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