[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1661.cs
blobf31dced91b59aba4c5aae62631cff55ef4abe6b3
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) {};