Switch to compiler-tester
[mono.git] / mcs / tests / unsafe-4.cs
diff --git a/mcs/tests/unsafe-4.cs b/mcs/tests/unsafe-4.cs
deleted file mode 100644 (file)
index 41961e9..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// Compiler options: -unsafe
-
-unsafe class X {
-       static int v;
-       static int v_calls;
-       
-       static int* get_v ()
-       {
-               v_calls++;
-               return &v;
-       }
-       
-       static int Main ()
-       {
-               if ((*get_v ())++ != 0)
-                       return 1;
-               if (v != 1)
-                       return 2;
-               if (v_calls != 1)
-                       return 3;
-               return 0;
-       }
-}