2 // This test excercises the compiler being able to compute
3 // correctly the return type in the presence of null (as null
4 // will be implicitly convertible to anything
8 public static int Main ()
12 string s
= o
== null ? "string" : null;
13 string d
= o
== null ? null : "string";