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

cs0023-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1575b44f5016901473d3fbe06bfb8869e6da22b (plain)
1
2
3
4
5
6
7
8
9
10
// cs0023-4.cs: The `.' operator can not be applied to anonymous methods
// Line: 8

using System;
class Test {
	public static void Main(string[] argv) {
		Console.WriteLine("Type of anonymous block: {0}",
			(delegate() {}).GetType());
	}
}