Switch to compiler-tester
[mono.git] / mcs / tests / unsafe-10.cs
diff --git a/mcs/tests/unsafe-10.cs b/mcs/tests/unsafe-10.cs
deleted file mode 100644 (file)
index ee6fc0c..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Compiler options: -unsafe
-
-using System;
-
-unsafe class X {
-       static int Main () {
-               int y = 20;
-               byte* x = (byte*)0;
-               x += (long)y;
-               // x == 20;
-               return (int)x - 20 * sizeof (byte);
-       }
-}