Browse Source

307147: testcode

tags/V1_6_9M1
aclement 14 years ago
parent
commit
5f71d71ca4
2 changed files with 13 additions and 0 deletions
  1. 3
    0
      tests/bugs169/pr307147/B.java
  2. 10
    0
      tests/bugs169/pr307147/Test2.java

+ 3
- 0
tests/bugs169/pr307147/B.java View File

@@ -0,0 +1,3 @@
public class B {
private void m() {}
}

+ 10
- 0
tests/bugs169/pr307147/Test2.java View File

@@ -0,0 +1,10 @@
privileged
aspect Test {
before(): call(* m(..)) {}
public void B.getFoo() {
m();
}

}

Loading…
Cancel
Save