blob: fffef16513130109ee373b7c0d5d60bfe6dfd054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public aspect ITDAspect {
@First
@Second
public void App.foo(Object parameter) { }
@First
public void App.foo(String parameter) { }
@Second
public int App.foo(int parameter) {
return parameter + 3;
}
}
|