Added testity test
[mono.git] / mcs / errors / cs0176.cs
1 // cs0176.cs: cannot be accessed with an instance reference, use typename instead
2 // Line: 12
3 class X {
4         public static void void_method ()
5         {
6         }
7 }
8
9 class Y {
10         void m (X arg)
11         {
12                 arg.void_method ();
13         }
14 }