[Mono-bugs] [Bug 52517][Nor] Changed - Type definitions are being looked up differently than member access
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 21 Jan 2004 15:12:35 -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 martin@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=52517
--- shadow/52517 2004-01-07 01:56:08.000000000 -0500
+++ shadow/52517.tmp.6311 2004-01-21 15:12:35.000000000 -0500
@@ -73,6 +73,45 @@
public static void Main() {
Mat c;
c = Mat.A;
}
}
+
+------- Additional Comments From martin@ximian.com 2004-01-21 15:12 -------
+The following test case is not related to this bug, but when fixing
+this bug, we need to make sure we aren't breaking it.
+
+================
+using Foo = B.Test;
+
+namespace A
+{
+ public interface Foo
+ {
+ void Test ();
+ }
+}
+
+namespace B
+{
+ public interface Test
+ {
+ void Hello ();
+ }
+}
+
+namespace A.B
+{
+ class C : B.Test
+ {
+ Foo GetFoo ()
+ {
+ return this;
+ }
+
+ public void Hello ()
+ { }
+ }
+}
+
+