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>2009-01-28 19:13:30 +0300
committerMarek Safar <marek.safar@gmail.com>2009-01-28 19:13:30 +0300
commit90d00cdf1269a3d6e489593721597596166f69b2 (patch)
treeba8156a481abf097ad095fa1c7e1ec14f02c9ac0 /mcs/tests/gtest-409.cs
parent6f8bf682a6fe8ee3c1c990550311b0acbc33bf49 (diff)
New test.
svn path=/trunk/mcs/; revision=124788
Diffstat (limited to 'mcs/tests/gtest-409.cs')
-rw-r--r--mcs/tests/gtest-409.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/tests/gtest-409.cs b/mcs/tests/gtest-409.cs
index f2120c7d650..430a77c7ad3 100644
--- a/mcs/tests/gtest-409.cs
+++ b/mcs/tests/gtest-409.cs
@@ -73,6 +73,13 @@ public class ConditionalParsing
{
var _endDate = value > DateTime.MinValue ? new DateTime ? (value) : null;
}
+
+ void Test_9 ()
+ {
+ bool b = (1 == 2);
+ bool c = (1 == 1);
+ string a = (b ? (c ? "#" : "#") : "");
+ }
public static void Main ()
{