1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0118: `x.a.B' is a `property' but a `type' was expected // Line: 9 using System; namespace x { class a { bool B { set {} } void Test (B b) {} } }