Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2008-01-03 20:56:08 +0300
committerMarek Safar <marek.safar@gmail.com>2008-01-03 20:56:08 +0300
commit83994d9369398f0022c69c16822b6052e6e992d5 (patch)
treeacc4c6432ee3bea6a69e87ae9f374f3833b0236b /mcs/tests/test-609.cs
parent8689005ef7637227f6595a2d3824f120fb20c697 (diff)
New test.
svn path=/trunk/mcs/; revision=92198
Diffstat (limited to 'mcs/tests/test-609.cs')
-rw-r--r--mcs/tests/test-609.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-609.cs b/mcs/tests/test-609.cs
new file mode 100644
index 00000000000..a1019a2d8a0
--- /dev/null
+++ b/mcs/tests/test-609.cs
@@ -0,0 +1,15 @@
+using System;
+
+class Test
+{
+ public static int Main()
+ {
+ if (!("aoeu" is String))
+ return 1;
+
+ if (!("aoeu" is Object))
+ return 2;
+
+ return 0;
+ }
+}