[Mono-bugs] [Bug 74073][Blo] Changed - amd casting regression

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 24 Mar 2005 20:20:24 -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 bmaurer@users.sf.net.

http://bugzilla.ximian.com/show_bug.cgi?id=74073

--- shadow/74073	2005-03-24 20:17:57.000000000 -0500
+++ shadow/74073.tmp.23130	2005-03-24 20:20:24.000000000 -0500
@@ -74,6 +74,19 @@
 
 This does *not* happen on x86.
 
 ------- Additional Comments From bmaurer@users.sf.net  2005-03-24 20:17 -------
 mkestner apparently it krept in since 1.1.5
 mkestner cause 1.1.5 works like butter
+
+------- Additional Comments From bmaurer@users.sf.net  2005-03-24 20:20 -------
+Even easier:
+
+interface IBlah {}
+
+class X : IBlah {
+	static void Main ()
+	{
+		object [] a = new IBlah [5];
+		IBlah  [] b = (IBlah []) a;
+	}
+}