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

interface I
{
	int P => 1;
}