Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0193.cs
index ad22f1856be87db3a4612cf1702a9fb88da9f8f9..3eae90ffd6ebbea6a10510e061f7986582f362ec 100644 (file)
@@ -1,4 +1,4 @@
-// cs0193.cs: * or -> operator can only be applied to pointer types.
+// CS0193: The * or -> operator must be applied to a pointer
 // Line: 9
 // Compiler options: -unsafe
 
@@ -7,8 +7,6 @@ unsafe class X {
        {
                int a = 0;
                if (*a == 0)
-                       return 1;
-               
-               return 0;
+                       return;
        }
 }