Add regression test for bug #10392.
[mono.git] / mono / tests / verifier / unverifiable_binary_compare_with_generic_argument.il
1
2 .assembly extern mscorlib
3 {
4   .ver 2:0:0:0
5   .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
6 }
7
8 .assembly 'bla'
9 {
10   .hash algorithm 0x00008004
11   .ver  0:0:0:0
12 }
13
14 .module bne_with_generic_type_type.exe
15
16
17 .class public auto ansi beforefieldinit Test
18         extends [mscorlib]System.Object
19 {
20         .method public static void Method<T> ()
21         {
22                 .locals init (!!T V_0, !!T V_1)
23
24                 ldloc.0
25                 ldloc.1
26                 bne.un END
27                 nop
28 END:
29                 ret
30         }
31 }
32
33
34 .method public static int32 Main ()
35 {
36         .entrypoint
37         .maxstack 8
38
39         call void class Test::Method<int32>()
40
41         ldc.i4.0
42         ret 
43 }
44
45
46