(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0120.cs
blob817b2d5ea35d9a4c2a0313940ef7c1ce628ba1fb
1 // cs0120: Ie, a static method invoking a non-static method
2 // `An object reference is required for the nonstatic field, method or property test.method()
3 // Line: 11
5 class test {
7 void method ()
11 public static int Main (string [] args){
12 method ();
13 return 1;