(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0677.cs
blob822724a9b53603eb8e218edf9ad77bc41356725f
1 // cs0677.cs: X.a volatile field can not be of 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 ()