codeowners update
[mono.git] / mcs / errors / cs0103-7.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 }