Merge pull request #4730 from lambdageek/facades-and-bug-580
[mono.git] / mcs / tests / test-200.cs
index 3c6f35539b73cc364cb7c67d473feab551253a0c..58b43ea695c91ff290fb4caf757b5b33e8558b70 100644 (file)
@@ -22,6 +22,13 @@ class X
                x = d ^= c;
                Console.WriteLine (x);
 
+               // Implicit conversion with shift operators
+               short s = 5;
+                int i = 30000001;
+                s <<= i;
+                Console.WriteLine (s);
+               Console.WriteLine ("OK");
+
                return 0;
        }
 }