1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-27 05:54:38 +02:00
org.aspectj/tests/new/DeclareAspectConstructorCE.java
2002-12-16 18:51:06 +00:00

12 satır
161 B
Java

/** @testcase PR851 declaring an aspect constructor with argument should be prohibited */
aspect A {
A() {}
}
aspect B {
A.new(int i) {} // CE 10
}