2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0678.cs
blob25ade67056d2d1454a4089907b555cfad5a25ed5
1 // cs0678.cs: `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 () {}