1 2 3 4 5 6 7 8 9 10 11
// CS0118: `X.s' is a `field' but a `type' was expected // Line: 6 class X { string s; s MyProperty { get { return s; } } }