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