summaryrefslogtreecommitdiff
path: root/tests/src/Loader/classloader/generics/Instantiation/Negative/param07.il
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Loader/classloader/generics/Instantiation/Negative/param07.il')
-rw-r--r--tests/src/Loader/classloader/generics/Instantiation/Negative/param07.il234
1 files changed, 234 insertions, 0 deletions
diff --git a/tests/src/Loader/classloader/generics/Instantiation/Negative/param07.il b/tests/src/Loader/classloader/generics/Instantiation/Negative/param07.il
new file mode 100644
index 0000000000..57405213da
--- /dev/null
+++ b/tests/src/Loader/classloader/generics/Instantiation/Negative/param07.il
@@ -0,0 +1,234 @@
+// 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 { }
+
+// Microsoft (R) .NET Framework IL Disassembler. Version 1.1.2019.0
+// Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
+
+
+
+// Metadata version: v1.1.2019
+.assembly extern mscorlib
+{
+ .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
+ .hash = (73 26 79 1F 31 96 69 CE 57 B9 48 24 EE A8 34 F1 // s&y.1.i.W.H$..4.
+ 42 87 88 29 ) // B..)
+ .ver 1:1:3300:0
+}
+.assembly Negative001
+{
+
+ // --- The following custom attribute is added automatically, do not uncomment -------
+ // .custom instance void [mscorlib]System.Diagnostics.DebuggableAttribute::.ctor(bool,
+ // bool) = ( 01 00 00 01 00 00 )
+
+ .hash algorithm 0x00008004
+ .ver 0:0:0:0
+}
+.module Negative001.exe
+// MVID: {A165307B-2178-469D-A064-956E56145B09}
+.imagebase 0x00400000
+.subsystem 0x00000003
+.file alignment 512
+.corflags 0x00000001
+// Image base: 0x034B0000
+
+// =============== CLASS MEMBERS DECLARATION ===================
+
+.class public sequential ansi sealed beforefieldinit Gen<([mscorlib]System.Object) T>
+ extends [mscorlib]System.ValueType
+{
+ .pack 0
+ .size 1
+ .method public hidebysig instance void
+ Dummy() cil managed
+ {
+ // Code size 1 (0x1)
+ .maxstack 0
+ IL_0000: ret
+ } // end of method Gen::Dummy
+
+} // end of class Gen
+
+.class public auto ansi beforefieldinit GenTest<([mscorlib]System.Object) T>
+ extends [mscorlib]System.Object
+{
+ .method private hidebysig instance void
+ InternalTest() cil managed
+ {
+ // Code size 18 (0x12)
+ .maxstack 1
+ .locals init (valuetype Gen<!0> V_0)
+ IL_0000: ldloca.s V_0
+ IL_0002: initobj valuetype Gen<!0>
+ IL_0008: ldloc.0
+ IL_0009: stloc.0
+ IL_000a: ldloca.s V_0
+ IL_000c: call instance void valuetype Gen::Dummy()
+ IL_0011: ret
+ } // end of method GenTest::InternalTest
+
+ .method private hidebysig instance void
+ IndirectTest() cil managed
+ {
+ // Code size 7 (0x7)
+ .maxstack 1
+ IL_0000: ldarg.0
+ IL_0001: call instance void class GenTest<!0>::InternalTest()
+ IL_0006: ret
+ } // end of method GenTest::IndirectTest
+
+ .method public hidebysig instance bool
+ Test() cil managed
+ {
+ // Code size 48 (0x30)
+ .maxstack 2
+ .locals init (class [mscorlib]System.Exception V_0,
+ bool V_1)
+ .try
+ {
+ IL_0000: ldarg.0
+ IL_0001: call instance void class GenTest<!0>::IndirectTest()
+ IL_0006: ldstr "Test did not throw expected System.TypeLoadException"
+ IL_000b: call void [System.Console]System.Console::WriteLine(string)
+ IL_0010: ldc.i4.0
+ IL_0011: stloc.1
+ IL_0012: leave.s IL_002e
+
+ } // end .try
+ catch [mscorlib]System.TypeLoadException
+ {
+ IL_0014: pop
+ IL_0015: ldc.i4.1
+ IL_0016: stloc.1
+ IL_0017: leave.s IL_002e
+
+ } // end handler
+ catch [mscorlib]System.Exception
+ {
+ IL_0019: stloc.0
+ IL_001a: ldstr "Test caught unexpected Exception "
+ IL_001f: ldloc.0
+ IL_0020: call string [mscorlib]System.String::Concat(object,
+ object)
+ IL_0025: call void [System.Console]System.Console::WriteLine(string)
+ IL_002a: ldc.i4.0
+ IL_002b: stloc.1
+ IL_002c: leave.s IL_002e
+
+ } // end handler
+ IL_002e: ldloc.1
+ IL_002f: ret
+ } // end of method GenTest::Test
+
+ .method public hidebysig specialname rtspecialname
+ instance void .ctor() cil managed
+ {
+ // Code size 7 (0x7)
+ .maxstack 1
+ IL_0000: ldarg.0
+ IL_0001: call instance void [mscorlib]System.Object::.ctor()
+ IL_0006: ret
+ } // end of method GenTest::.ctor
+
+} // end of class GenTest
+
+.class public auto ansi beforefieldinit Test
+ extends [mscorlib]System.Object
+{
+ .field public static int32 counter
+ .field public static bool result
+ .method public hidebysig static void Eval(bool exp) cil managed
+ {
+ // Code size 47 (0x2f)
+ .maxstack 2
+ IL_0000: ldsfld int32 Test::counter
+ IL_0005: ldc.i4.1
+ IL_0006: add
+ IL_0007: stsfld int32 Test::counter
+ IL_000c: ldarg.0
+ IL_000d: brtrue.s IL_002e
+
+ IL_000f: ldarg.0
+ IL_0010: stsfld bool Test::result
+ IL_0015: ldstr "Test Failed at location: "
+ IL_001a: ldsfld int32 Test::counter
+ IL_001f: box [mscorlib]System.Int32
+ IL_0024: call string [mscorlib]System.String::Concat(object,
+ object)
+ IL_0029: call void [System.Console]System.Console::WriteLine(string)
+ IL_002e: ret
+ } // end of method Test::Eval
+
+ .method public hidebysig static int32 Main() cil managed
+ {
+ .entrypoint
+ // Code size 113 (0x71)
+ .maxstack 1
+ .locals init (int32 V_0)
+ IL_0000: newobj instance void class GenTest<int32>::.ctor()
+ IL_0005: call instance bool class GenTest<int32>::Test()
+ IL_000a: call void Test::Eval(bool)
+ IL_000f: newobj instance void class GenTest<float64>::.ctor()
+ IL_0014: call instance bool class GenTest<float64>::Test()
+ IL_0019: call void Test::Eval(bool)
+ IL_001e: newobj instance void class GenTest<valuetype [mscorlib]System.Guid>::.ctor()
+ IL_0023: call instance bool class GenTest<valuetype [mscorlib]System.Guid>::Test()
+ IL_0028: call void Test::Eval(bool)
+ IL_002d: newobj instance void class GenTest<string>::.ctor()
+ IL_0032: call instance bool class GenTest<string>::Test()
+ IL_0037: call void Test::Eval(bool)
+ IL_003c: newobj instance void class GenTest<object>::.ctor()
+ IL_0041: call instance bool class GenTest<object>::Test()
+ IL_0046: call void Test::Eval(bool)
+ IL_004b: ldsfld bool Test::result
+ IL_0050: brfalse.s IL_0061
+
+ IL_0052: ldstr "Test Passed"
+ IL_0057: call void [System.Console]System.Console::WriteLine(string)
+ IL_005c: ldc.i4.s 100
+ IL_005e: stloc.0
+ IL_005f: br.s IL_006f
+
+ IL_0061: ldstr "Test Failed"
+ IL_0066: call void [System.Console]System.Console::WriteLine(string)
+ IL_006b: ldc.i4.1
+ IL_006c: stloc.0
+ IL_006d: br.s IL_006f
+
+ IL_006f: ldloc.0
+ IL_0070: ret
+ } // end of method Test::Main
+
+ .method private hidebysig specialname rtspecialname static
+ void .cctor() cil managed
+ {
+ // Code size 13 (0xd)
+ .maxstack 1
+ IL_0000: ldc.i4.0
+ IL_0001: stsfld int32 Test::counter
+ IL_0006: ldc.i4.1
+ IL_0007: stsfld bool Test::result
+ IL_000c: ret
+ } // end of method Test::.cctor
+
+ .method public hidebysig specialname rtspecialname
+ instance void .ctor() cil managed
+ {
+ // Code size 7 (0x7)
+ .maxstack 1
+ IL_0000: ldarg.0
+ IL_0001: call instance void [mscorlib]System.Object::.ctor()
+ IL_0006: ret
+ } // end of method Test::.ctor
+
+} // end of class Test
+
+
+// =============================================================
+
+
+//*********** DISASSEMBLY COMPLETE ***********************
+// WARNING: Created Win32 resource file param07.res