diff options
author | aclement <aclement> | 2006-05-10 11:20:36 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-05-10 11:20:36 +0000 |
commit | 20e6c3bf2c75c1e8b4584cdd401773c7a83fe720 (patch) | |
tree | dde5acaffb70476cf5a6624a81b630eaeac374f3 /tests/multiIncremental/PR134471 | |
parent | 2b6f28eaefef88f26aa7d089f7b50e3e5129a514 (diff) | |
download | aspectj-20e6c3bf2c75c1e8b4584cdd401773c7a83fe720.tar.gz aspectj-20e6c3bf2c75c1e8b4584cdd401773c7a83fe720.zip |
another stage added to this test sequence
Diffstat (limited to 'tests/multiIncremental/PR134471')
-rw-r--r-- | tests/multiIncremental/PR134471/inc2/pkg/C.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/multiIncremental/PR134471/inc2/pkg/C.java b/tests/multiIncremental/PR134471/inc2/pkg/C.java new file mode 100644 index 000000000..4f2e67b07 --- /dev/null +++ b/tests/multiIncremental/PR134471/inc2/pkg/C.java @@ -0,0 +1,12 @@ +package pkg; + +public class C { + + public void method(){ + new C().method2(); + } + + public void method2() { + + } +} |