Removed invalid test.
authorMarek Safar <marek.safar@gmail.com>
Tue, 22 Jan 2008 21:48:05 +0000 (21:48 -0000)
committerMarek Safar <marek.safar@gmail.com>
Tue, 22 Jan 2008 21:48:05 +0000 (21:48 -0000)
svn path=/trunk/mcs/; revision=93583

mcs/tests/gtest-139.cs [deleted file]

diff --git a/mcs/tests/gtest-139.cs b/mcs/tests/gtest-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);
-       }
-}