diff options
Diffstat (limited to 'tests/bugs151/pr125480/AbstractMethods.aj')
-rw-r--r-- | tests/bugs151/pr125480/AbstractMethods.aj | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/bugs151/pr125480/AbstractMethods.aj b/tests/bugs151/pr125480/AbstractMethods.aj deleted file mode 100644 index e37065c87..000000000 --- a/tests/bugs151/pr125480/AbstractMethods.aj +++ /dev/null @@ -1,13 +0,0 @@ - - -public abstract aspect AbstractMethods { - - protected abstract pointcut tracingScope (); - - before () : tracingScope () { - test(); - } - - protected abstract void test (); -// protected void test () {} -} |