linux-packaging-mono/mono/tests/method-access.il
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

84 lines
1.2 KiB
Plaintext

.assembly extern mscorlib {}
.assembly 'method-access' {}
.class public MethFail extends [mscorlib]System.Object {
.method private void foo ()
{
ret
}
.method static private void sfoo ()
{
ret
}
.method public specialname rtspecialname instance void .ctor()
{
ldarg.0
call instance void [mscorlib]System.Object::.ctor()
ret
}
}
.class Test {
.method static void call_sfoo ()
{
call void MethFail::sfoo ()
ret
}
.method static void call_foo ()
{
.locals (MethFail mf)
newobj instance void MethFail::.ctor()
stloc mf
ldloc mf
call instance void MethFail::foo ()
ret
}
.method static int32 Main ()
{
.entrypoint
.try {
call void Test::call_sfoo ()
br fail
} catch [mscorlib]System.MethodAccessException {
pop
br continue
} catch [mscorlib]System.Exception {
pop
br fail
}
continue:
.try {
call void Test::call_foo ()
br fail
} catch [mscorlib]System.MethodAccessException {
pop
br success
} catch [mscorlib]System.Exception {
pop
br fail
}
success:
ldstr "PASS"
call void [mscorlib]System.Console::WriteLine(string)
ldc.i4.0
ret
fail:
ldstr "FAIL"
call void [mscorlib]System.Console::WriteLine(string)
ldc.i4.1
ret
}
}