[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0176.cs
1 // CS0176: Static member `X.void_method()' cannot be accessed with an instance reference, qualify it with a type name instead
2 // Line: 15
3 class X {
4         public static void void_method ()
5         {
6         }
7         public void void_method (int i)
8         {
9         }
10 }
11
12 class Y {
13         void m (X arg)
14         {
15                 arg.void_method ();
16         }
17 }