blob: af83bbff986dd9bfcdf2803daba33b603890e7c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0103: The name `Console' does not exist in the current context
// Line: 10
class C
{
delegate void WithOutParam (string value);
static void Main()
{
WithOutParam o = (s) => Console.WriteLine();
}
}
|