Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0531-3.cs
1 // CS0531: `I.P': interface members cannot have a definition
2 // Line: 6
3
4 interface I
5 {
6         int P => 1;
7 }