Merge pull request #4615 from alexanderkyte/string_error_handling
[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 }