summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0118-3.cs
blob: 23988f544a89a049fa03dc270e92a2803e42c4e8 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0118: `Region.Value' is a `field' but a `type' was expected
// Line: 8

public sealed class Region
{
    int Value;
    
    [Value(2)]
    public Region() {}
}