org.aspectj/tests/bugs/pr64262/PrimitiveCoercionInExactTypePatternMatching.java

15 lines
195 B
Java
Raw Normal View History

public class PrimitiveCoercionInExactTypePatternMatching {
double foo(double x) {
return x;
}
}
aspect Aspect {
pointcut foo(int b): args(b);
before(int i) : foo(i) {
}
}