summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0525.cs
blob: 9e225c6dedb7bf79ee359760ca248b1dfb97d49c (plain)
1
2
3
4
5
6
7
// CS0525: Interfaces cannot contain fields or constants
// Line: 6

interface Interface
{ 
	bool value = false;
}