]> source.dussan.org Git - aspectj.git/commitdiff
another stage added to this test sequence
authoraclement <aclement>
Wed, 10 May 2006 11:20:36 +0000 (11:20 +0000)
committeraclement <aclement>
Wed, 10 May 2006 11:20:36 +0000 (11:20 +0000)
tests/multiIncremental/PR134471/inc2/pkg/C.java [new file with mode: 0644]

diff --git a/tests/multiIncremental/PR134471/inc2/pkg/C.java b/tests/multiIncremental/PR134471/inc2/pkg/C.java
new file mode 100644 (file)
index 0000000..4f2e67b
--- /dev/null
@@ -0,0 +1,12 @@
+package pkg;
+
+public class C {
+       
+       public void method(){
+               new C().method2();
+       }
+       
+       public void method2() {
+               
+       }
+}