blob: 54bcee33d31f3ab1cf22c831cb58b5d54485f84a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public class PrimitiveCoercionInExactTypePatternMatching {
double foo(double x) {
return x;
}
}
aspect Aspect {
pointcut foo(int b): args(b);
before(int i) : foo(i) {
}
}
|