[Mono-bugs] [Bug 70838][Nor] Changed - System.Type IsAssignableFrom does not work with dynamic types

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 12 Jan 2005 11:29:19 -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 vargaz@gmail.com.

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

--- shadow/70838	2005-01-10 09:05:28.000000000 -0500
+++ shadow/70838.tmp.11910	2005-01-12 11:29:19.000000000 -0500
@@ -11,13 +11,13 @@
 AssignedTo: vargaz@gmail.com                            
 ReportedBy: nazgul@omega.pl               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
-Summary: System.Type IsAssignableFrom crashes when assembly is builded for Save
+Summary: System.Type IsAssignableFrom does not work with dynamic types
 
 Please fill in this template when reporting a bug, unless you know what you
 are doing.
 Description of Problem:
 When building assembly with AssemblyBuilderAccess.Save, IsAssignableFrom
 method of System.Type do not work as expected. It crashes when run for
@@ -103,6 +103,9 @@
 ------- Additional Comments From vargaz@gmail.com  2005-01-10 09:05 -------
 When Save is used, the runtime avoids initializing some fields of the
 created types, when that initialization would take a lot of time or
 memory. This can cause problems if the types returned by CreateType
 are 'used', i.e. some methods may not work, like IsAssignableFrom.
 
+
+------- Additional Comments From vargaz@gmail.com  2005-01-12 11:29 -------
+The test case doesn't run even when RunAndSave is used.