Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2008-01-23 00:48:05 +0300
committerMarek Safar <marek.safar@gmail.com>2008-01-23 00:48:05 +0300
commit424a3d4304c8be77b267a86047d4e6a94bd2e354 (patch)
treec123f953d62747e8503d5e5424f8ad5c8eda546d /mcs/tests/gtest-139.cs
parent332221c6213b7ad580be6eb78c51ee265b660c2b (diff)
Removed invalid test.
svn path=/trunk/mcs/; revision=93583
Diffstat (limited to 'mcs/tests/gtest-139.cs')
-rw-r--r--mcs/tests/gtest-139.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/mcs/tests/gtest-139.cs b/mcs/tests/gtest-139.cs
deleted file mode 100644
index 7b187e147bd..00000000000
--- a/mcs/tests/gtest-139.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-class X
-{
- static void Main ()
- {
- bool? a = true;
- int? b = a ? 3 : 4;
- Console.WriteLine (b);
- }
-}