diff options
author | aclement <aclement> | 2006-03-08 13:53:04 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-03-08 13:53:04 +0000 |
commit | 54c167d257ef862c313fd4ebb647c1f28597157c (patch) | |
tree | f89a1c39456e533485996328e6d868c3a862fa3f /tests/multiIncremental | |
parent | e20f544cd90d2ac0af6c217eec2a835e1dbe5d06 (diff) | |
download | aspectj-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.aj | 5 | ||||
-rw-r--r-- | tests/multiIncremental/PR129613/inc1/pkg/A.aj | 6 |
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.*(..)); +} |