[Mono-bugs] [Bug 46182][Nor] Changed - Incompatible lookup when namespace name = class name
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Fri, 18 Jul 2003 15:10:25 -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=46182
--- shadow/46182 Fri Jul 18 07:22:37 2003
+++ shadow/46182.tmp.14085 Fri Jul 18 15:10:25 2003
@@ -52,6 +52,26 @@
Created an attachment (id=4851)
file 2 of 2
------- Additional Comments From lupus@ximian.com 2003-07-18 07:22 -------
mcs issue.
+
+------- Additional Comments From martin@ximian.com 2003-07-18 15:10 -------
+using Tester.Variable;
+
+namespace Tester.Objects
+{
+ public class Tester
+ {
+ public Tester()
+ {
+ }
+
+ public Variable.Variable foo()
+ {
+ return null;
+ }
+
+ static void Main() {}
+ }
+}