Switch to compiler-tester
[mono.git] / mcs / errors / cs0026-2.cs
1 // cs0026-2.cs: Keyword `this' is not valid in a static property, static method, or static field initializer
2 // 
3 class X {
4         static object o = this;
5
6         static int Main ()
7         {
8                 return 1;
9         }
10 }