Copied remotely
[mono.git] / mcs / errors / cs0026-2.cs
1 // cs0026: use of this is not allowed in a static field initializer
2 // 
3 class X {
4         static object o = this;
5
6         static int Main ()
7         {
8                 return 1;
9         }
10 }