aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR134471
diff options
context:
space:
mode:
authoraclement <aclement>2006-05-10 11:20:36 +0000
committeraclement <aclement>2006-05-10 11:20:36 +0000
commit20e6c3bf2c75c1e8b4584cdd401773c7a83fe720 (patch)
treedde5acaffb70476cf5a6624a81b630eaeac374f3 /tests/multiIncremental/PR134471
parent2b6f28eaefef88f26aa7d089f7b50e3e5129a514 (diff)
downloadaspectj-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.java12
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() {
+
+ }
+}