Files
linux-packaging-mono/mcs/errors/cs0531-2.cs

6 lines
139 B
C#
Raw Normal View History

// CS0531: `Interface.P.get': interface members cannot have a definition
// Line:
public interface Interface {
int P { get {} }
}