* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0023-4.cs
1 // cs0023-4.cs: The `.' operator can not be applied to anonymous methods
2 // Line: 8
3
4 using System;
5 class Test {
6         public static void Main(string[] argv) {
7                 Console.WriteLine("Type of anonymous block: {0}",
8                         (delegate() {}).GetType());
9         }
10 }