Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0677-5.cs
1 // CS0677: `X.e': A volatile field cannot be of the type `E'
2 // Line: 10
3
4 enum E : long
5 {
6 }
7
8 class X
9 {
10         volatile E e;
11 }