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-09-19 12:43:38 +0400
committerMarek Safar <marek.safar@gmail.com>2008-09-19 12:43:38 +0400
commit9d9af28f5d076e9b374652ff506ba0f693ba8bae (patch)
tree11f9e25c6ca897a8c25935412d4970f9fb110038 /mcs/tests/test-679.cs
parent1d36c921213cf487a0757bda90518416a03b0821 (diff)
A test for #419888
svn path=/trunk/mcs/; revision=113497
Diffstat (limited to 'mcs/tests/test-679.cs')
-rwxr-xr-xmcs/tests/test-679.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/test-679.cs b/mcs/tests/test-679.cs
new file mode 100755
index 00000000000..4d756d4ca75
--- /dev/null
+++ b/mcs/tests/test-679.cs
@@ -0,0 +1,13 @@
+// Compiler options: -r:dlls/test-679-1/test-679-lib.dll -r:dlls/test-679-2/test-679-lib-2.dll
+
+using System;
+
+class Program {
+
+ static int Main ()
+ {
+ LibB.A ();
+ LibB.B ();
+ return 0;
+ }
+}