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

interface Interface
{
    const bool value = false;
}