Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0026-2.cs
1 // CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
2 // Line: 4
3 class X {
4         static object o = this;
5
6         static int Main ()
7         {
8                 return 1;
9         }
10 }