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-12-03 18:43:00 +0300
committerMarek Safar <marek.safar@gmail.com>2008-12-03 18:43:00 +0300
commit7521a9c795911dcf57d4b374754b69fb364ecfed (patch)
tree1f248188bc766dfc7bf377acaaf93247030d55a5 /mcs/tests/gtest-431.cs
parentde7ab4b8b19e7c2fba538bc993b5c32417fcc606 (diff)
New test.
svn path=/trunk/mcs/; revision=120609
Diffstat (limited to 'mcs/tests/gtest-431.cs')
-rw-r--r--mcs/tests/gtest-431.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/gtest-431.cs b/mcs/tests/gtest-431.cs
new file mode 100644
index 00000000000..5e886e970cf
--- /dev/null
+++ b/mcs/tests/gtest-431.cs
@@ -0,0 +1,14 @@
+// Compiler options: -r:gtest-431-lib-1.dll -r:gtest-431-lib-2.dll -noconfig
+
+using System;
+
+using Library;
+
+class Program {
+
+ static void Main ()
+ {
+ var foo = new Foo ();
+ foo.Bar ();
+ }
+}