Updated with review feedback.
[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 }