summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0531-2.cs
blob: e5081ac999a5ef4e5098de922f22ff7339b1a88d (plain)
1
2
3
4
5
6
// CS0531: `Interface.P.get': interface members cannot have a definition
// Line:

public interface Interface {        
	int P { get {} }
}