Updates for CODEOWNERS
[mono-project.git] / mono / tests / verifier / invalid_try_block_out_of_bounds.il
blob6011eec19a7f6e5331d4fe9609572979a2304968
1 .assembly extern mscorlib
3   .ver 2:0:0:0
4   .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )
6 .assembly 'repro'
8   .hash algorithm 0x00008004
9   .ver  0:0:0:0
11 .module repro.exe
13 .class public auto ansi beforefieldinit Driver extends [mscorlib]System.Object
15         .method private static  hidebysig default void Main ()  cil managed 
16         {
17                 .entrypoint
18                 .maxstack 1
19 _TRY_START: //0
20                 leave END
21 _CATCH_START: //05
22                 pop
23                 leave END
24 END: //0b
25                 ret 
26                 //.try 0x0 to 0x5 catch [mscorlib]System.Exception handler 0x5 to 0xb //this is ok
27                 //.try 0x0 to 0x5 catch [mscorlib]System.Exception handler 0x5 to 0xb
28                 //.try _TRY_START to _CATCH_START catch [mscorlib]System.Exception handler _CATCH_START to END
29                 .try 0x0 to 0x555 catch [mscorlib]System.Exception handler 0x555 to 0xbbb
30         }