Welcome to mirror list, hosted at ThFree Co, Russian Federation.

err-gen-3.il « errors « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5837d3a955f063527965a845ba4ab811dd8c6f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//Error: Invalid type parameter 'A' (!A)

.assembly extern mscorlib
{
  .ver 2:0:0:0
}
.assembly 'gen-2'
{
  .ver  0:0:0:0
}
.module 'gen-2.dll'

  .class private auto ansi beforefieldinit g`1<T>
  	extends [mscorlib]System.Object
  {

    .method public hidebysig  specialname  rtspecialname 
           instance default void .ctor ()  cil managed 
    {
	.maxstack 8
	IL_0000:  ldarg.0 
	IL_0001:  call instance void object::.ctor()
	IL_0006:  ret 
    }

    .method public static  hidebysig 
           default void foo<M> ()  cil managed 
    {
	.maxstack 8
	IL_0000:  ret 
    }

    .method private hidebysig 
           instance default void abc <A> ()  cil managed 
    {
	.maxstack 8
	IL_0000:  call void class g`1<int32>::foo<!A> ()
	IL_0005:  ret 
    }

  }