Fix documentation header for some tests
[mono.git] / mcs / errors / cs1678.cs
1 // CS1678: 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);
7
8 class X {
9         static void Main ()
10         {
11                 D d2 = delegate (long x) {};
12         }
13 }