Browse Source

testcode for 119019

tags/V1_5_0RC1
aclement 18 years ago
parent
commit
3e07ec315b

+ 5
- 0
tests/bugs150/pr119019/bar/TargetITDClass.java View File

@@ -0,0 +1,5 @@
package bar;

public class TargetITDClass {

}

+ 20
- 0
tests/bugs150/pr119019/foo/ITDWithACall.aj View File

@@ -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";
}
}

Loading…
Cancel
Save