Updates for CODEOWNERS
[mono-project.git] / mono / tests / verifier / unverifiable_stack_2_ret.il
blob9e1bd86474550d2930510925f579f774abbe751b
1 // invalid CIL which breaks the ECMA-335 rules. 
2 // This CIL should fail verification by a conforming CLI verifier.
4 .assembly '_generated'
6   .hash algorithm 0x00008004
7   .ver  0:0:0:0
10 .class Class extends [mscorlib]System.Object
12     .field public int32 fld
15 .method public static int32 Foo(int32 x) cil managed
17         .maxstack 2
18         ldarg.0
19         ldarg.0
20         ret // invalid, stack with two elements.
23 .method public static void Main() cil managed
25         .entrypoint
26         .maxstack 2
27         ldarg.0
28         call int32 Foo(int32)
29         pop
30         ret