New test.
authorMartin Baulig <martin@novell.com>
Sat, 4 Mar 2006 02:42:26 +0000 (02:42 -0000)
committerMartin Baulig <martin@novell.com>
Sat, 4 Mar 2006 02:42:26 +0000 (02:42 -0000)
svn path=/trunk/mcs/; revision=57572

mcs/tests/gtest-248.cs [new file with mode: 0755]

diff --git a/mcs/tests/gtest-248.cs b/mcs/tests/gtest-248.cs
new file mode 100755 (executable)
index 0000000..4f9389f
--- /dev/null
@@ -0,0 +1,15 @@
+using System;
+
+public class Foo<T>
+{ }
+
+class X
+{
+       static bool Test (object o)
+       {
+               return o is Foo<int> ? true : false;
+       }
+
+       static void Main ()
+       { }
+}