1 2 3 4 5 6 7 8 9 10 11 12
class C { void m() { } } /** @testcase type not imported in around advice */ aspect A { void around() : execution(void m()) { Rectangle expected = null; // CE 10 } }