org.aspectj/tests/bugs/pr64262/PrimitiveCoercionInExactTypePatternMatching.java
acolyer fdff68edb5 test for Bugzilla Bug 64262
ClassCastException at BcelRenderer.java:16
2004-07-29 10:32:54 +00:00

15 lines
195 B
Java

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