[configure] rename "--with-interpreter=yes" to "--enable-interpreter"
[mono.git] / mcs / errors / cs1043.cs
1 // CS1043: Invalid accessor body `1', expecting `;' or `{'
2 // Line: 6
3
4 class C
5 {
6         int Foo { set 1; }
7 }