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:
authorRaja R Harinath <harinath@hurrynot.org>2005-01-11 16:49:17 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-01-11 16:49:17 +0300
commitd466d8caffe29167e19c928275272106f1d57774 (patch)
tree2a5560f1a14bacb165ec6abbf33eead578b30a97 /mcs/tests/test-334.cs
parent90035f3c393fab49f1b7019f04e465b33dfe10cc (diff)
* test-334.cs: New test for #69519.
svn path=/trunk/mcs/; revision=38693
Diffstat (limited to 'mcs/tests/test-334.cs')
-rw-r--r--mcs/tests/test-334.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-334.cs b/mcs/tests/test-334.cs
new file mode 100644
index 00000000000..00d94e469ff
--- /dev/null
+++ b/mcs/tests/test-334.cs
@@ -0,0 +1,18 @@
+namespace Test {
+ namespace Foo {
+ namespace Store {
+ public class Directory { }
+ }
+ }
+}
+
+namespace Test {
+ using Directory = Foo.Store.Directory;
+ namespace Foo {
+ namespace Index {
+ public class CompoundFileReader : Directory {
+ static void Main () { }
+ }
+ }
+ }
+}