[Mono-bugs] [Bug 70490][Wis] Changed - Bug found in mcs and gmcs
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 15 Dec 2004 02:50:18 -0500 (EST)
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 rharinath@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=70490
--- shadow/70490 2004-12-12 15:04:45.000000000 -0500
+++ shadow/70490.tmp.5591 2004-12-15 02:50:18.000000000 -0500
@@ -1,13 +1,13 @@
Bug#: 70490
Product: Mono: Compilers
Version: 1.1
-OS:
+OS: unknown
OS Details: Gento 2.6.7
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: NOTABUG
Severity: Unknown
Priority: Wishlist
Component: C#
AssignedTo: mono-bugs@ximian.com
ReportedBy: spigaz@hotmail.com
QAContact: mono-bugs@ximian.com
@@ -69,6 +69,14 @@
To place the using inside the namespace declaration or to place the B class
in a namespace that has nothing in common with the current one, for
instance: B.D.
Observations, It finds the X class for the superclass of B, but not for the
second argument of C...
+
+------- Additional Comments From rharinath@novell.com 2004-12-15 02:50 -------
+This is not a bug. According to sec 10.8 (Namespace and type names),
+a simple name in a type context is resolved as a
+namespace-or-type-name, and then checked if it is actually a type.
+So, the X in A.D resolves to A.X, which is a namespace. The
+resolution stops at this point.
+