[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0169.cs
index bcd47c814917d6948e110df4a7fae62ed7c6241b..62d41a610f2bc65bad1590b005c469166d40acc2 100644 (file)
@@ -1,11 +1,9 @@
-// cs0169.cs: warning, private field `prv' is never used
+// CS0169: The private field `X.x' is never used
 // Line: 4
+// Compiler options: -warnaserror -warn:4
+
 class X {
        int x;
 
-       void blah ()
-       {
-       }
-
        static void Main () {}
 }