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:
authorMartin Baulig <martin@novell.com>2005-06-17 16:52:33 +0400
committerMartin Baulig <martin@novell.com>2005-06-17 16:52:33 +0400
commit3cddb1325b8020bb05d47d5d528938f42a4b25fd (patch)
tree3d3e555010e43c8a311991ea9fc601db8f168dbb /mcs/tests/gtest-168.cs
parent4fcd5d13b7c2bb5699183e18c2034b2591f7c82e (diff)
New tests.
svn path=/trunk/mcs/; revision=46137
Diffstat (limited to 'mcs/tests/gtest-168.cs')
-rwxr-xr-xmcs/tests/gtest-168.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/tests/gtest-168.cs b/mcs/tests/gtest-168.cs
new file mode 100755
index 00000000000..a2c6d31d46a
--- /dev/null
+++ b/mcs/tests/gtest-168.cs
@@ -0,0 +1,20 @@
+// Compiler options: /r:gtest-168-lib.dll
+public class lis <a> {}
+
+public class M {
+ public static lis <a> Rev <a> (lis <a> x)
+ {
+ return x;
+ }
+
+ public static lis <b> MapFromArray<a, b> (a[] x)
+ {
+ return M.Rev (new lis <b>());
+ }
+}
+
+class X
+{
+ static void Main ()
+ { }
+}