2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1661.cs
blob70f66a1ca15fd190e9b77e28bc82cf85ab05cd01
1 // CS1661: Cannot convert `anonymous method' to delegate type `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) {};