2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3026.cs
blobbbd6f8755a0de4bc9b9cb380f8685e32c1a9a1a6
1 // cs3026.cs: CLS-compliant field `Class.V' cannot be volatile
2 // Line: 9
3 // Compiler options: -warn:1 -warnaserror
5 using System;
6 [assembly: CLSCompliant (true)]
8 public class Class {
9 protected volatile int V;
10 static void Main () {}