static int invoke_twice(Bar2 b)
    {
        b.foo();
        // The check_this generated here by the JIT should be removed
        b.foo();

        return(0);
    }
    public static int test_0_abcrem_check_this_removal()
    {
        Bar2 b = new Bar2();

        // The check_this generated here by the JIT should be removed
        b.foo();

        return(0);
    }
示例#3
0
文件: objects.cs 项目: kumpera/mono
	static int invoke_twice (Bar2 b) {
		b.foo ();
		// The check_this generated here by the JIT should be removed
		b.foo ();

		return 0;
	}
示例#4
0
文件: objects.cs 项目: kumpera/mono
	public static int test_0_abcrem_check_this_removal () {
		Bar2 b = new Bar2 ();

		// The check_this generated here by the JIT should be removed
		b.foo ();

		return 0;
	}