2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0176.cs
blob961b79f4474778f4efe975e74f8ffce6c47ae558
1 // cs0176.cs: 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 ()
7 public void void_method (int i)
12 class Y {
13 void m (X arg)
15 arg.void_method ();