Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0193.cs
old mode 100755 (executable)
new mode 100644 (file)
index 2d41213..3eae90f
@@ -1,13 +1,12 @@
-// cs0193.cs: * or -> operator can only be applied to pointer types.
-// Line: 8
+// CS0193: The * or -> operator must be applied to a pointer
+// Line: 9
+// Compiler options: -unsafe
 
 unsafe class X {
        static void Main ()
        {
-               int a;
+               int a = 0;
                if (*a == 0)
-                       return 1;
-               
-               return 0;
+                       return;
        }
 }