1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-08-26 17:58:43 +02:00
org.aspectj/tests/errors/TypeNotImportedInAroundCE.java

13 Zeilen
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
}
}