diff options
Diffstat (limited to 'tests/bugs150/pr119019/foo/ITDWithACall.aj')
-rw-r--r-- | tests/bugs150/pr119019/foo/ITDWithACall.aj | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/bugs150/pr119019/foo/ITDWithACall.aj b/tests/bugs150/pr119019/foo/ITDWithACall.aj new file mode 100644 index 000000000..dcf60785d --- /dev/null +++ b/tests/bugs150/pr119019/foo/ITDWithACall.aj @@ -0,0 +1,20 @@ +package foo; + +import bar.TargetITDClass; + +public aspect ITDWithACall { + + public static void main(String []argv) { + new TargetITDClass().doSomething("hello"); + } + + public void TargetITDClass.doSomething(String param) { + String changedParam= changeParam(param); + } + + + protected static String changeParam(String param) { /// <= HERE + return param + "-modified"; + } + +} |