org.aspectj/tests/errors/TypeNotImportedInAroundCE.java

13 行
193 B
Java

class C { void m() { } }
/** @testcase type not imported in around advice */
aspect A {
void around() : execution(void m()) {
Rectangle expected = null; // CE 10
}
}