Bump API snapshot submodule
[mono.git] / mcs / errors / cs0531-2.cs
1 // CS0531: `Interface.P.get': interface members cannot have a definition
2 // Line:
3
4 public interface Interface {        
5         int P { get {} }
6 }