summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0149-3.cs
blob: dbbdd33e16a3b87b54504661cff3673c3909bc72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0149: Method name expected
// Line: 10

delegate void D ();

public class MainClass
{
	public static void Main ()
	{
		D delegateInstance = new D (Main, null);
	}
}