Switch to compiler-tester
[mono.git] / mcs / tests / unsafe-9.cs
diff --git a/mcs/tests/unsafe-9.cs b/mcs/tests/unsafe-9.cs
deleted file mode 100644 (file)
index f35fd3e..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Compiler options: -unsafe
-
-//
-// Test for http://bugzilla.ximian.com/show_bug.cgi?id=62263
-//
-// We need to make sure that pointer arth uses the size of X
-// not the size of X*
-//
-
-using System;
-unsafe struct X {
-       int x, y, z;
-       
-       static int Main ()
-       {
-               X* foo = null;
-               
-               if ((int) (foo + 1) != sizeof (X))
-                       return 1;
-               return 0;
-       }
-}