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>2010-04-01 13:29:04 +0400
committerMarek Safar <marek.safar@gmail.com>2010-04-01 13:29:04 +0400
commit9d75b81298fd0e797c821368b7b3513d08941834 (patch)
treeec205c15fa1a77ab6f40fbf8d898ec0f28b6a935 /mcs/tests/test-751.cs
parent73481d620cfbbd644c0b2f44459cd42aa77a03db (diff)
More tests.
svn path=/trunk/mcs/; revision=154622
Diffstat (limited to 'mcs/tests/test-751.cs')
-rw-r--r--mcs/tests/test-751.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/mcs/tests/test-751.cs b/mcs/tests/test-751.cs
new file mode 100644
index 00000000000..5097a7cd5d3
--- /dev/null
+++ b/mcs/tests/test-751.cs
@@ -0,0 +1,29 @@
+using SomeOtherNS;
+using LocalNS;
+using OneMoreNS;
+
+namespace SomeOtherNS.Compiler
+{
+}
+
+namespace OneMoreNS.Compiler
+{
+}
+
+namespace LocalNS
+{
+ public class Compiler
+ {
+ }
+}
+
+namespace System.Local
+{
+ class M
+ {
+ public static void Main ()
+ {
+ Compiler c = new LocalNS.Compiler ();
+ }
+ }
+} \ No newline at end of file