[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0185-2.cs
blob3fa0fffe69b2da89f44d411e8599ca2218499fe6
1 // CS0185: `method group' is not a reference type as required by the lock statement
2 // Line: 15
4 class MainClass
6 public static void Main ()
8 lock (Bar.Buzz) {
13 class Bar
15 internal void Buzz ()