[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-278.cs
index bda2227f2d99f7a5bd66df0d439c4d97f7c2a8ca..9cbd6129b97ff4191402e0d12bbea3bdfb0c9fa2 100644 (file)
@@ -7,11 +7,11 @@ struct Rect {
 }
 
 class X {
-        static int Main ()
+        public static int Main ()
         {
                 Rect rect = new Rect ();
                 rect.X += 20;
-                Console.WriteLine ("Shoudl be 20: " + rect.X);
+                Console.WriteLine ("Should be 20: " + rect.X);
                 return rect.X == 20 ? 0 : 1;
         }
-}
\ No newline at end of file
+}