Merge pull request #4040 from ntherning/disable-symbolicate-tests-on-windows
[mono.git] / mcs / errors / cs0678.cs
1 // CS0678: `X.j': A field cannot be both volatile and readonly
2 // Line: 5
3
4 class X {
5         readonly volatile int j;
6
7         static void Main () {}
8 }