[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1593-3.cs
blob46defe582d88774905a5c8812a21dc2be795bd06
1 // CS1593: Delegate `System.Func<int,int>' does not take `2' arguments
2 // Line: 11
5 using System;
7 class C
9 static void Main (string [] args)
11 M ((x, y) => 2);
14 static void M (Func<int, int> a)