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>2011-03-03 15:18:59 +0300
committerMarek Safar <marek.safar@gmail.com>2011-03-03 15:18:59 +0300
commitb8147ed5ef7c1f1f7bbbe4ee654cd18cc6a6d9e5 (patch)
treeb437104a930cc0d7614bd897dd0c1755da266530 /mcs/tests/test-810.cs
parente6c1e2b72f1bbd3a2d7b0687df625b808c8848aa (diff)
Import base interfaces using full hierarchy to work with output produced by some odd compilers
Diffstat (limited to 'mcs/tests/test-810.cs')
-rw-r--r--mcs/tests/test-810.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/test-810.cs b/mcs/tests/test-810.cs
new file mode 100644
index 00000000000..d82de016baf
--- /dev/null
+++ b/mcs/tests/test-810.cs
@@ -0,0 +1,14 @@
+// Compiler options: -r:test-810-lib.dll
+
+public class C
+{
+ public IA Test (IC b)
+ {
+ IA a = b;
+ return a;
+ }
+
+ public static void Main ()
+ {
+ }
+} \ No newline at end of file