New test.
[mono.git] / mcs / tests / gtest-409.cs
index 7605b604d51cb1e4d8f88887c876e3d89e9e8a03..430a77c7ad32abdcb9e7e411502eea3af60642f9 100644 (file)
@@ -69,6 +69,18 @@ public class ConditionalParsing
                object a = (S?[]) o;
        }
 
+       void Test_8 (DateTime value)
+       {
+               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 ()
        {
        }