From 2e3334dfcf8e52395c9704cea32ed4ae2e86c39e Mon Sep 17 00:00:00 2001 From: Paolo Molaro Date: Fri, 25 Jul 2003 13:23:32 +0000 Subject: [PATCH] Slightly more complex example. svn path=/trunk/mcs/; revision=16662 --- mcs/ilasm/tests/generics-d.il | 59 +++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 mcs/ilasm/tests/generics-d.il diff --git a/mcs/ilasm/tests/generics-d.il b/mcs/ilasm/tests/generics-d.il new file mode 100644 index 00000000000..4186938bd8e --- /dev/null +++ b/mcs/ilasm/tests/generics-d.il @@ -0,0 +1,59 @@ +// +// Test a generic type type param field +// + +.assembly extern mscorlib { } + + +.namespace Mono.ILASM.Tests { + + .class public Set extends [mscorlib]System.Object { + + .field public !0 val + + .method public instance void .ctor (!0 arg) { + ldarg.0 + ldarg.1 + stfld !0 class Mono.ILASM.Tests.Set::val + ret + } + + .method public instance !0 access () { + .locals init (!0) + ldarg.0 + ldfld !0 class Mono.ILASM.Tests.Set::val + // just to make sure locals work, too + stloc.0 + ldloc.0 + ret + } + } + + .class public Driver extends [mscorlib]System.Object { + + .method public static void Main () + { + .entrypoint + .locals init ( class Mono.ILASM.Tests.Set, + class Mono.ILASM.Tests.Set) + + ldc.i4.4 + newobj instance void class Mono.ILASM.Tests.Set::.ctor (int32) + stloc.0 + + ldloc.0 + call instance int32 class Mono.ILASM.Tests.Set::access () + call void [mscorlib]System.Console::WriteLine (int32) + + ldc.r8 35.6 + newobj instance void class Mono.ILASM.Tests.Set::.ctor (float64) + stloc.1 + + ldloc.1 + call instance float64 class Mono.ILASM.Tests.Set::access () + call void [mscorlib]System.Console::WriteLine (float64) ret + } + + } +} + -- 2.25.1