// cs1678.cs: Parameter `1' is declared as type `long' but should be `int' // Line: 11 // // Signature mismatch. // delegate void D (int x); class X { static void Main () { D d2 = delegate (long x) {}; } }