for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs1678.cs
blobdfd5352859a61c9c2f774185729c2aa38f3fa264
1 // CS1678: Parameter `1' is declared as type `long' but should be `int'
2 // Line: 9
4 delegate void D (int x);
6 class X {
7 static void Main ()
9 D d2 = delegate (long x) {};