Switch to compiler-tester
[mono.git] / mcs / tests / unsafe-7.cs
diff --git a/mcs/tests/unsafe-7.cs b/mcs/tests/unsafe-7.cs
deleted file mode 100644 (file)
index 13d5d86..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Compiler options: -unsafe
-
-struct Obsolete {
-       int a;
-}
-struct A {
-       int a, b;
-}
-
-class MainClass {
-        unsafe public static void Main ()
-        {
-                System.Console.WriteLine (sizeof (Obsolete));
-        }
-}
-
-