From 60edf48d3cac5e64a4f8d35345794ef89822ea9f Mon Sep 17 00:00:00 2001 From: aclement Date: Wed, 13 Apr 2005 11:25:12 +0000 Subject: Test programs for pr90806 --- tests/incremental/structureModel/changes/X.20.aj | 4 ++++ tests/incremental/structureModel/src/X.aj | 3 +++ tests/incremental/structureModel/src/Y.aj | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 tests/incremental/structureModel/changes/X.20.aj create mode 100644 tests/incremental/structureModel/src/X.aj create mode 100644 tests/incremental/structureModel/src/Y.aj (limited to 'tests/incremental/structureModel') diff --git a/tests/incremental/structureModel/changes/X.20.aj b/tests/incremental/structureModel/changes/X.20.aj new file mode 100644 index 000000000..465c3eda3 --- /dev/null +++ b/tests/incremental/structureModel/changes/X.20.aj @@ -0,0 +1,4 @@ +public aspect X { + before(): Y.p() {} + +} diff --git a/tests/incremental/structureModel/src/X.aj b/tests/incremental/structureModel/src/X.aj new file mode 100644 index 000000000..d8596d118 --- /dev/null +++ b/tests/incremental/structureModel/src/X.aj @@ -0,0 +1,3 @@ +public aspect X { + before(): Y.p() {} +} diff --git a/tests/incremental/structureModel/src/Y.aj b/tests/incremental/structureModel/src/Y.aj new file mode 100644 index 000000000..63d5b1794 --- /dev/null +++ b/tests/incremental/structureModel/src/Y.aj @@ -0,0 +1,3 @@ +public aspect Y { + pointcut p(): call(* *(..)); +} -- cgit v1.2.3