[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0708.cs
index 6cdccee8422cc151a14a76acc4c70fdb604a051c..23d85f51f89e5ae982f48ed534d72ae1fb4737e2 100644 (file)
@@ -1,6 +1,7 @@
-// cs0708.cs: `StaticClass.i': cannot declare instance members in a static class
-// Line: 5
+// CS0708: `StaticClass.i': cannot declare instance members in a static class
+// Line: 6
 
-static class StaticClass {
-        public int i;
+static class StaticClass
+{
+       public int i;
 }