summaryrefslogtreecommitdiff
path: root/tests/src/Loader/classloader/regressions/dev10_710121/dev10_710121.il
blob: 96e28f672f4565c599ea35068522d737add1e122 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

.assembly extern System.Console { }
/*BUG: Assert: Precondition failure: FAILED: !ContainsGenericVariables() (vm\method.cpp, Line: 1781)

The bug related to populating MethodDesc slots in generic dictionaries at runtime.

  o The dictionary entry "signature" in these cases describes the compile-time <Type>::<Method>
    pair that targets this MethodDesc.

  o The problem was specific to cases where the implementation of <Type>::<Method> was not defined
    directly on <Type> but was instead inherited from some generic base class in <Type>'s base
    class chain.
*/

.assembly extern mscorlib {}
.assembly Generated30 {}

.class public DerivedDerived
		extends class Derived`2<string,string>
{
  .method public hidebysig specialname rtspecialname instance void .ctor() cil managed
  {
    ret
  }
}
.class public Derived`2<T0, T1> 
		extends class Base`2<int32,!T1>
{
  .method public hidebysig specialname rtspecialname instance void .ctor() cil managed
  {
    ret
  }
}
.class public Base`2<T0, T1> 
{
  .method public hidebysig newslot virtual instance string Method<M0>() cil managed 
  { 
    ldstr "Base::Method<"
    ldtoken !!M0
    call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
    call string [mscorlib]System.String::Concat(object,object)
    ldstr ">"
    call string [mscorlib]System.String::Concat(object,object)
    ret
  }
  .method public hidebysig specialname rtspecialname instance void .ctor() cil managed
  {
    ret
  }
}



.class private auto ansi beforefieldinit Framework
{
	.method private hidebysig static void  CheckResult(string expected, string actual) cil managed {
	  .maxstack  8
	  IL_0000:  ldstr      "EXPECTED : "
	  IL_0005:  ldarg.0
	  IL_0006:  call       string [mscorlib]System.String::Concat(string,string)
	  IL_000b:  call       void [System.Console]System.Console::WriteLine(string)
	  IL_0010:  ldstr      "ACTUAL   : "
	  IL_0015:  ldarg.1
	  IL_0016:  call       string [mscorlib]System.String::Concat(string,string)
	  IL_001b:  call       void [System.Console]System.Console::WriteLine(string)
	  IL_0020:  ldarg.0
	  IL_0021:  ldarg.1
	  IL_0022:  call       bool [mscorlib]System.String::op_Inequality(string,string)
	  IL_0027:  brfalse.s  IL_0034
	  IL_0029:  ldstr      "CheckResult FAILED!"
	  IL_002e:  newobj     instance void [mscorlib]System.Exception::.ctor(string)
	  IL_0033:  throw
	  IL_0034:  ret
	} // end of method Test::CheckResult
	
	.method static string ConstCaller<T0,T1,(class Derived`2<!!T0,!!T1>)W>(!!W 'inst') cil managed {
		.maxstack 33
		
		ldarga.s     0
		constrained. !!W
		callvirt     instance string class Derived`2<!!T0,!!T1>::Method<object>()
		
		ret
	}
    .method public hidebysig static int32  Main() cil managed
    {
        .entrypoint
        .maxstack  3

		ldstr "Base::Method<System.Object>"
		newobj instance void DerivedDerived::.ctor()
		callvirt     instance string class Derived`2<string,string>::Method<object>()
		call void Framework::CheckResult(string,string)

		ldstr "Base::Method<System.Object>"
		newobj instance void DerivedDerived::.ctor()
		call string Framework::ConstCaller<string,string,class DerivedDerived>(!!2)
		call void Framework::CheckResult(string,string)

		ldstr "PASS"
		call       void [System.Console]System.Console::WriteLine(string)
		ldc.i4.s   100
        ret
    }
}