diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/new/options11/Aspect.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/options11/Aspect.java b/tests/new/options11/Aspect.java index e0c56f519..4dcd5baf0 100644 --- a/tests/new/options11/Aspect.java +++ b/tests/new/options11/Aspect.java @@ -21,7 +21,7 @@ aspect AnotherAspect extends Library2 { class Testing { static aspect Init { - declare dominates : Init, Library1, AnotherAspect; + declare precedence : Init, Library1, AnotherAspect; before() : AnotherAspect.targetJoinPoints() { Main.i = 1; |