"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs3026.cs
blob2cefc85b3ae6fd480388ab14e61c848116bcbf7a
1 // CS3026: 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 () {}