2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1678.cs
blobfec06bfd395de7ea15d65bf6f6c7066d8b37fffc
1 // cs1678.cs: Parameter `1' is declared as type `long' but should be `int'
2 // Line: 11
3 //
4 // Signature mismatch.
5 //
6 delegate void D (int x);
8 class X {
9 static void Main ()
11 D d2 = delegate (long x) {};