1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-26 05:57:44 +02:00
org.aspectj/tests/errors/TypeNotImportedInAroundCE.java

13 satır
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
}
}