2008-02-19 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0103.cs
1 // CS0103: The name `Console' does not exist in the current context
2 // Line: 10
3
4
5 class C
6 {
7         delegate void WithOutParam (string value);
8
9         static void Main() 
10         {
11                 WithOutParam o = (s) => Console.WriteLine();
12         }
13 }