2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0023-4.cs
blob788ea5bbdc5be9e0643c1d405e98d6b17c0caece
1 // CS0023: The `.' operator cannot be applied to operand of type `anonymous method'
2 // Line: 8
4 using System;
5 class Test {
6 public static void Main(string[] argv) {
7 Console.WriteLine("Type of anonymous block: {0}",
8 (delegate() {}).GetType());