summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental
diff options
context:
space:
mode:
authoraclement <aclement>2006-03-08 13:53:04 +0000
committeraclement <aclement>2006-03-08 13:53:04 +0000
commit54c167d257ef862c313fd4ebb647c1f28597157c (patch)
treef89a1c39456e533485996328e6d868c3a862fa3f /tests/multiIncremental
parente20f544cd90d2ac0af6c217eec2a835e1dbe5d06 (diff)
downloadaspectj-54c167d257ef862c313fd4ebb647c1f28597157c.tar.gz
aspectj-54c167d257ef862c313fd4ebb647c1f28597157c.zip
129163: more bits...: set the compiler correctly for error reporting on inc builds. (comment #34,35)
Diffstat (limited to 'tests/multiIncremental')
-rw-r--r--tests/multiIncremental/PR129613/base/pkg/A.aj5
-rw-r--r--tests/multiIncremental/PR129613/inc1/pkg/A.aj6
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/multiIncremental/PR129613/base/pkg/A.aj b/tests/multiIncremental/PR129613/base/pkg/A.aj
new file mode 100644
index 000000000..6dbcccf75
--- /dev/null
+++ b/tests/multiIncremental/PR129613/base/pkg/A.aj
@@ -0,0 +1,5 @@
+package pkg;
+
+public aspect A {
+
+}
diff --git a/tests/multiIncremental/PR129613/inc1/pkg/A.aj b/tests/multiIncremental/PR129613/inc1/pkg/A.aj
new file mode 100644
index 000000000..efb37108e
--- /dev/null
+++ b/tests/multiIncremental/PR129613/inc1/pkg/A.aj
@@ -0,0 +1,6 @@
+package pkg;
+
+public aspect A {
+
+ pointcut p2(): call(* File.*(..));
+}