[Mono-bugs] [Bug 25615][Min] Changed - Ambiguous type references should produce a warning
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
9 Jul 2002 19:51:12 -0000
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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=25615
--- shadow/25615 Mon Jul 8 10:17:05 2002
+++ shadow/25615.tmp.27024 Tue Jul 9 15:51:12 2002
@@ -3,13 +3,13 @@
Version: unspecified
OS: other
OS Details:
Status: ASSIGNED
Resolution:
Severity: Unknown
-Priority: Normal
+Priority: Minor
Component: Misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: mkestner@speakeasy.net
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
@@ -37,7 +37,18 @@
}
csc won't compile the program, issuing the following error:
name-ambig.cs(7,3): error CS0104: 'a' is an ambiguous reference
name-ambig.cs(4,21): (Location of symbol related to previous error)
name-ambig.cs(3,21): (Location of symbol related to previous error)
+
+
+------- Additional Comments From miguel@ximian.com 2002-07-09 15:51 -------
+Although this can be fixed, it will potentially slow down a lot the
+compiler. The source of the problem is that there is no way to list
+the namespaces in an assembly without a costly process.
+
+That is why we also have the SimpleName hack in MCS instead of a
+`Namespace' expression (which would have been the right thing to do).
+
+I will make this a minor bug for now.