[Mono-bugs] [Bug 45520][Blo] Changed - regression: MCS 0.25 is not able to resolve alias to nested class

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Fri, 4 Jul 2003 15:31:09 -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=45520

--- shadow/45520	Fri Jul  4 15:29:17 2003
+++ shadow/45520.tmp.14925	Fri Jul  4 15:31:09 2003
@@ -53,6 +53,23 @@
 Created an attachment (id=4731)
 testcase (2 of 2)
 
 
 ------- Additional Comments From gert.driesen@pandora.be  2003-06-27 18:30 -------
 I can also reproduce this on linux with mono built from cvs.
+
+------- Additional Comments From martin@ximian.com  2003-07-04 15:31 -------
+using RemoteLoggingSink =
+log4net.Appender.RemoteLogging.RemoteLoggingSink;
+
+namespace log4net.Test {
+	public class AliasTest {
+		public static void Main() {
+			System.Console.WriteLine("ok");
+		}
+	}
+
+	public class RemoteLoggingSinkImpl : RemoteLoggingSink {
+		public override void LogEvents(object[] events) {
+		}
+	}
+}