[sre] register a canonical MonoReflectionMethod for a methodref token
[mono.git] / mono / tests / verifier / invalid_try_catch_with_zero_max_stack.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 'tt'
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 tt.exe // GUID = {3AC42A5A-D344-4AED-B39B-FCA95938B725}
16
17   .class private auto ansi beforefieldinit Driver
18         extends [mscorlib]System.Object
19   {
20
21     .method private static  hidebysig default void Main ()  cil managed 
22     {
23         .entrypoint
24         .maxstack 0
25         .locals init (
26                 int32   V_0,
27                 int32    V_1)
28
29                 .try {
30                   leave END
31                 }
32                 catch class [mscorlib]System.Object { // 0
33                   pop 
34                   leave END
35                 }
36 END:
37                 ret 
38     }
39 }