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:
Diffstat (limited to 'mcs/tests/gtest-235-exe.cs')
-rwxr-xr-xmcs/tests/gtest-235-exe.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/gtest-235-exe.cs b/mcs/tests/gtest-235-exe.cs
new file mode 100755
index 00000000000..7af72fa9325
--- /dev/null
+++ b/mcs/tests/gtest-235-exe.cs
@@ -0,0 +1,12 @@
+// Compiler options: /r:gtest-235-lib.dll
+// Dependencies: gtest-235-lib.cs
+using System;
+
+class GettingStarted
+{
+ public static void Main ()
+ {
+ MyList<string> names = new MyList<string> ();
+ names.AddAll<string> ();
+ }
+}