Remove excessive shortcut key matching in ToolStrip
[mono.git] / mcs / errors / cs8053.cs
1 // CS8053: `I.P': Properties inside interfaces cannot have initializers
2 // Line: 6
3
4 interface I
5 {
6         int P { get; } = 4;
7 }