2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / 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;