2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0103.cs
blobaf83bbff986dd9bfcdf2803daba33b603890e7c8
1 // CS0103: The name `Console' does not exist in the current context
2 // Line: 10
5 class C
7 delegate void WithOutParam (string value);
9 static void Main()
11 WithOutParam o = (s) => Console.WriteLine();