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>2009-06-04 20:10:11 +0400
committerMarek Safar <marek.safar@gmail.com>2009-06-04 20:10:11 +0400
commit3dbf5800a085cc7fc8fda0792bc0c7094bff7540 (patch)
tree8d23eedbd5b1ce2c0029b5909f963e3fde404f3d /mcs/tests/gtest-447.cs
parent78dd1f6b2c84976d287206e5a9c5b96316e55691 (diff)
New test.
svn path=/trunk/mcs/; revision=135448
Diffstat (limited to 'mcs/tests/gtest-447.cs')
-rw-r--r--mcs/tests/gtest-447.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/gtest-447.cs b/mcs/tests/gtest-447.cs
new file mode 100644
index 00000000000..5dd3db74d53
--- /dev/null
+++ b/mcs/tests/gtest-447.cs
@@ -0,0 +1,14 @@
+// Compiler options: -r:gtest-447-2-lib.dll -r:gtest-447-3-lib.dll
+
+using System;
+
+class B
+{
+ public static int Main ()
+ {
+ if (C.Print ("x") != "x")
+ return 1;
+
+ return 0;
+ }
+}