Switch to compiler-tester
[mono.git] / mcs / tests / gen-137.cs
diff --git a/mcs/tests/gen-137.cs b/mcs/tests/gen-137.cs
deleted file mode 100644 (file)
index 880f3e8..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-class X
-{
-       static void Main ()
-       {
-               int? a = 4;
-               int? b = -a;
-               Console.WriteLine (b);
-       }
-}