1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0118: `A' is a `type' but a `variable' was expected // Line: 12 class A { } class B { public B () { A = 2; } }