summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0677-5.cs
blob: a6d22486408b3cce358a7fb38d18213843e0f38b (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0677: `X.e': A volatile field cannot be of the type `E'
// Line: 10

enum E : long
{
}

class X
{
	volatile E e;
}