Merge pull request #5382 from kumpera/pedump_fix
[mono.git] / mono / tests / verifier / invalid_fallthru_into_filter_block.il
1 .assembly 'invalid_fallthru_into_filter_block'
2 {
3   .hash algorithm 0x00008004
4   .ver  0:0:0:0
5 }
6
7 .method public static int32 Main() cil managed
8 {
9         .entrypoint
10         .maxstack 8
11         .locals init (int32 V0)
12         
13         ldloc.0
14         brfalse BB_MIDDLE
15
16 BB_00:
17                 newobj instance void class [mscorlib]System.Exception::.ctor()
18                 throw
19                 leave END
20 BB_01:
21
22 BB_MIDDLE:
23                 nop
24                 nop
25
26 BB_02:
27                 pop
28                 ldc.i4.0
29                 endfilter
30 BB_03:
31
32
33 BB_04:
34                 nop
35                 nop
36                 leave END
37 BB_05:
38
39 END:
40         ldc.i4.0
41         ret
42
43 .try BB_00 to BB_01 filter BB_02 handler BB_04 to BB_05
44
45
46 }