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-02-01 12:24:48 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-02-01 12:24:48 +0300
commit0d25c18bd652c4e46722a1893364fb2f9f3ee424 (patch)
tree4d2eccacc72c27a09956152143f2bbbb160f5881 /mcs/tests/test-334.cs
parent8e99c30372574637f1be7867e29a2dddba6617d3 (diff)
* test-341.cs: New test for #31984.
svn path=/trunk/mcs/; revision=39920
Diffstat (limited to 'mcs/tests/test-334.cs')
-rw-r--r--mcs/tests/test-334.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/tests/test-334.cs b/mcs/tests/test-334.cs
index eb6c13d2e51..20cc507fd9f 100644
--- a/mcs/tests/test-334.cs
+++ b/mcs/tests/test-334.cs
@@ -1,8 +1,8 @@
namespace Test {
- using Directory = Foo.Store.Directory;
+ using Bar = Foo.Store.Directory;
namespace Foo {
namespace Index {
- public class CompoundFileReader : Directory {
+ public class CompoundFileReader : Bar {
static void Main () { }
}
}