Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0677.cs
1 // CS0677: `X.a': A volatile field cannot be of the type `A'
2 // Line: 8
3 using System;
4
5 struct A { int a; }
6
7 class X {
8         public volatile A a;
9         static void Main ()
10                 {
11                 }
12 }