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>2007-11-09 18:46:59 +0300
committerMarek Safar <marek.safar@gmail.com>2007-11-09 18:46:59 +0300
commit4da1429c6f5cf6b4e70f00be62d592cfaa0cce34 (patch)
tree50f3d27fb80cfc8dfbf2b927bce38688e0aa7c0b /mcs/tests/test-123.cs
parent40d099fa6ef2a45b95a544529a68fc322666bf96 (diff)
New tests.
svn path=/trunk/mcs/; revision=89322
Diffstat (limited to 'mcs/tests/test-123.cs')
-rw-r--r--mcs/tests/test-123.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/tests/test-123.cs b/mcs/tests/test-123.cs
index 87f7dbbfe01..a27c805c3c4 100644
--- a/mcs/tests/test-123.cs
+++ b/mcs/tests/test-123.cs
@@ -40,6 +40,10 @@ class X {
if (d is int)
return 6;
+
+ object oi = 1;
+ if (!(oi is int))
+ return 7;
System.Console.WriteLine ("Is tests pass");
return 0;