[WinForms] Fix #18506 ActiveTracker, do not propagate message to control when it...
[mono-project.git] / mono / tests / verifier / unverifiable_ldflda_other_class_field_on_ctor.il
blob4c3049bb2c99b58f7988979fc3d08a07064d8532
2 // unverifiable CIL which breaks the ECMA-335 rules. 
3 // this CIL should fail verification by a conforming CLI verifier.
5 .assembly 'unverifiable_assign_compat_9_1_generated'
7   .hash algorithm 0x00008004
8   .ver  0:0:0:0
11 .assembly extern mscorlib
13   .ver 1:0:5000:0
14   .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
17 .class sealed MyValueType extends [mscorlib]System.ValueType
19         .field private int32 fld
23 .class public GoodClass {
24         .field initonly valuetype MyValueType x
27 .class public BadClass {
28         .method public hidebysig specialname rtspecialname instance default void .ctor () cil managed
29         {
30                 .maxstack 8
31                 .locals (GoodClass V_1)
32                 ldarg.0 
33                 call instance void object::.ctor()
34                 ldloca.s 0
35                 ldflda valuetype MyValueType GoodClass::x
36                 pop
37                 ret
38         }
42 .method public static void Main() cil managed
44         .maxstack 2
45         .entrypoint
46         newobj instance void BadClass::.ctor()
47         pop
48         ret