2009-07-20 Geoff Norton <gnorton@novell.com>
[mono-project.git] / mcs / errors / cs0677.cs
blob93429fabd2cd1d257a5e3640a5d138bcebcc6fc0
1 // cs0677.cs: `X.a': A volatile field cannot be of the type `A'
2 // Line: 8
3 using System;
5 struct A { int a; }
7 class X {
8 public volatile A a;
9 static void Main ()