From 2eadd1a2c662765e63e977b5f3585ab767c1239c Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 19 Sep 2008 15:44:15 +0000 Subject: [PATCH] 247742: anonymous handles: c6 --- .../AdviceHandles/base/src/Handles.aj | 6 ++- .../tools/MultiProjectIncrementalTests.java | 40 ++++++++++++------- 2 files changed, 30 insertions(+), 16 deletions(-) diff --git a/tests/multiIncremental/AdviceHandles/base/src/Handles.aj b/tests/multiIncremental/AdviceHandles/base/src/Handles.aj index f92a314be..195f59fb0 100644 --- a/tests/multiIncremental/AdviceHandles/base/src/Handles.aj +++ b/tests/multiIncremental/AdviceHandles/base/src/Handles.aj @@ -62,11 +62,15 @@ void b(String x) { new Condition() {}; // l62 new Condition() {}; // l63 } +void c(String x) { + new Condition() {}; // l66 + new Fondue() {}; // l67 +} } -class Condition {} +class Condition {} class Fondue {} aspect Foo { // Line 71: 247742: c4 after(String x) returning(String y) : within(NotExisting*) { } //src