12 lines
120 B
C#
Raw Permalink Normal View History

// CS0677: `X.e': A volatile field cannot be of the type `E'
// Line: 10
enum E : long
{
}
class X
{
volatile E e;
}