Merge pull request #4003 from ntherning/ignore-disconnected-interfaces-in-HttpListene...
[mono.git] / mcs / tests / test-12.cs
index b788eb89dd125fd22eafd3ea9d84ba8dee193a9e..245a18149813a61056c78ebb31ee8e403b2c2402 100644 (file)
@@ -4,7 +4,7 @@
 
 using System;
 class X {
-       static int Main (string [] args)
+       public static int Main (string [] args)
        {
                string a = "hello";
                string b = "1";
@@ -28,6 +28,10 @@ class X {
                if (y != "nice")
                        return 6;
                
+               string [] blah = { "A"+'B'+"C" };
+               if (blah [0] != "ABC")
+                       return 7;
+               
                Console.WriteLine (c);
                return 0;
        }