[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0103-7.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();