Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0149.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ff999d2f9e610861c09d5fe168d1a5111a22aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0149: Method name expected
// Line: 8

delegate void TestDelegate();

public class MainClass
{
	public static void Main ()
	{
		TestDelegate delegateInstance = new TestDelegate ();
	}
}