2006-06-05 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs1661.cs
blobf87c9333ab4957b50f91060ea358dd89673287de
1 // cs1661.cs: Anonymous method could not be converted to delegate `D' since there is a parameter mismatch
2 // Line: 9
4 delegate void D (int x);
6 class X {
7 static void Main ()
9 D d2 = delegate (ref int x) {};