// CS0677: `X.e': A volatile field cannot be of the type `E'
// Line: 10

enum E : long
{
}

class X
{
	volatile E e;
}