diff options
Diffstat (limited to 'tests/bugs150/pr78707.aj')
-rw-r--r-- | tests/bugs150/pr78707.aj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs150/pr78707.aj b/tests/bugs150/pr78707.aj new file mode 100644 index 000000000..a97c8cc1c --- /dev/null +++ b/tests/bugs150/pr78707.aj @@ -0,0 +1,11 @@ +public aspect pr78707 { + + before() returning : execution(* *(..)) { + // yeah, right! + } + + before() throwing : execution(* *(..)) { + System.out.println("I'm not flippin' phsycic you know!"); + } + +}
\ No newline at end of file |