Fixes mixed line ending.
[mono.git] / mono / tests / verifier / unverifiable_fallout_of_finally_block.il
1 .assembly extern mscorlib
2 {
3   .ver 2:0:0:0
4   .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
5 }
6 .assembly 'bug'
7 {
8   .custom instance void class [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::'.ctor'() =  (
9                 01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78   // ....T..WrapNonEx
10                 63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01       ) // ceptionThrows.
11
12   .hash algorithm 0x00008004
13   .ver  0:0:0:0
14 }
15 .module bug.exe // GUID = {7CDDF4B6-7581-4902-9709-6155199DC325}
16
17
18 .class private auto ansi beforefieldinit Program extends [mscorlib]System.Object
19 {
20         .method public static hidebysig default void __Main ()  cil managed 
21     {
22         //.entrypoint
23         .maxstack 2
24         ret
25         }
26
27
28         .method public static default void Main ()  cil managed 
29     {
30                 .entrypoint
31                 .maxstack 2
32                 .locals init (int32 loc0)
33          
34                 nop
35                 nop
36                 ldc.i4.0
37                 stloc.0
38                 
39                 .try {
40                         nop
41                         ldc.i4.0
42                         brfalse ELSE
43                         leave END
44 ELSE:
45                         nop
46                         leave END
47                 } finally {
48                         nop
49                         //endfinally
50                 }
51 END0:
52                 endfinally
53                 nop
54 END:
55                 ret 
56     }
57
58 }
59