[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0120-16.cs
blobc88ea34520e0ed798d3494e99859ef6d2503b7c5
1 // CS0120: An object reference is required to access non-static member `App.Test'
2 // Line: 15
4 class App
6 Test a = new Test ();
8 public Test Test
10 get { return a; }
13 public static void Main (string[] args)
15 Test.Run ();
19 class Test
21 public void Run () { }