[Mono-bugs] [Bug 40833][Min] Changed - Nested Namespace problem

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Fri, 4 Jul 2003 15:47:29 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by martin@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=40833

--- shadow/40833	Fri Jul  4 15:13:13 2003
+++ shadow/40833.tmp.4104	Fri Jul  4 15:47:28 2003
@@ -76,6 +76,29 @@
 ------- Additional Comments From gvaish@adobe.com  2003-04-10 05:33 -------
 
  Attached the patch - so that they are not lost.
  Waiting for response from core team over its validity.
 
 
+
+------- Additional Comments From martin@ximian.com  2003-07-04 15:47 -------
+using System;
+
+namespace One
+{
+	class Two
+	{
+		public class Three
+		{
+			public const int Four = 4;
+		}
+	}
+}
+
+namespace One.Two
+{
+	public class Four
+	{
+		public const int Five = 5;
+	}
+}
+