[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0678.cs
blobffb805a012c029ab5625d79a9f9d7187113abc76
1 // CS0678: `X.j': A field cannot be both volatile and readonly
2 // Line: 5
4 class X {
5 readonly volatile int j;
7 static void Main () {}