diff options
Diffstat (limited to 'tests/bugs152/pr141730/aspectpath/MyBar.aj')
-rw-r--r-- | tests/bugs152/pr141730/aspectpath/MyBar.aj | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/bugs152/pr141730/aspectpath/MyBar.aj b/tests/bugs152/pr141730/aspectpath/MyBar.aj deleted file mode 100644 index 3a38885ce..000000000 --- a/tests/bugs152/pr141730/aspectpath/MyBar.aj +++ /dev/null @@ -1,9 +0,0 @@ -package bar; - -public aspect MyBar { - - before() : call(* main(..)) { - System.out.println("about to call a main method"); - } - -} |