2009-07-20 Geoff Norton <gnorton@novell.com>
[mono-project.git] / mcs / errors / cs0026-2.cs
blob450ed8a2152b3b5f37e8142a4d55b9a54bdd005b
1 // cs0026-2.cs: 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;
6 static int Main ()
8 return 1;