From: aclement Date: Wed, 10 May 2006 11:20:36 +0000 (+0000) Subject: another stage added to this test sequence X-Git-Tag: V1_5_2rc1~155 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=20e6c3bf2c75c1e8b4584cdd401773c7a83fe720;p=aspectj.git another stage added to this test sequence --- 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() { + + } +}