blob: 052e9bffadc27024cb5a9f932b10997a4ef79fb8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0026: Keyword `this' is not valid in a static property, static method, or static field initializer
// Line: 4
class X {
static object o = this;
static int Main ()
{
return 1;
}
}
|