diff options
Diffstat (limited to 'tests/bugs180/432178/PerCFlowBug.java')
-rw-r--r-- | tests/bugs180/432178/PerCFlowBug.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs180/432178/PerCFlowBug.java b/tests/bugs180/432178/PerCFlowBug.java new file mode 100644 index 000000000..e81bd65c4 --- /dev/null +++ b/tests/bugs180/432178/PerCFlowBug.java @@ -0,0 +1,11 @@ +public abstract aspect PerCFlowBug percflow(pointexp()) +{ + String name = "bar"; + + abstract pointcut pointexp(); + + after() : pointexp() + { + System.out.println(name); + } +} |