181b81b4a4
Former-commit-id: cf92446697332992ec36726e78eb8703e1f259d7
12 lines
120 B
C#
12 lines
120 B
C#
// CS0677: `X.e': A volatile field cannot be of the type `E'
|
|
// Line: 10
|
|
|
|
enum E : long
|
|
{
|
|
}
|
|
|
|
class X
|
|
{
|
|
volatile E e;
|
|
}
|