merge 99630:99762
[mono.git] / mcs / tests / test-77.cs
index 8f3119b2a88379c433b525ab876e5e93db26ed42..eb78c9ff59c5cb6f3afcec2a07b7d05f93c69897 100644 (file)
@@ -34,6 +34,12 @@ class XX {
                if ((1 + " " + "hello") != "1 hello")
                        return 7;
        
+               const string s1 = null + (string)null;
+               const string s2 = (string)null + null;
+               
+               // csc does not compile this one
+               const string s3 = null + null;  
+       
                System.Console.WriteLine ("test ok");
                return 0;
        }