Switch to compiler-tester
[mono.git] / mcs / tests / unsafe-8.cs
diff --git a/mcs/tests/unsafe-8.cs b/mcs/tests/unsafe-8.cs
deleted file mode 100644 (file)
index 51ff6b0..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-// Compiler options: -unsafe
-
-unsafe class T {
-       static int Main () {
-               int len = 10;
-               int* x = stackalloc int [len];
-               return x [0];
-       }
-}