[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0149-3.cs
blobdbbdd33e16a3b87b54504661cff3673c3909bc72
1 // CS0149: Method name expected
2 // Line: 10
4 delegate void D ();
6 public class MainClass
8 public static void Main ()
10 D delegateInstance = new D (Main, null);