2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0120.cs
blob10554d1c582d9eb04f1e45f0f854d8dac6d75272
1 // cs0120.cs: `test.method()': An object reference is required for the nonstatic field, method or property
2 // Line: 11
4 class test {
6 void method ()
10 public static int Main (string [] args){
11 method ();
12 return 1;