diff options
Diffstat (limited to 'tests/bugs150/pr117681/TestAspect.java')
-rw-r--r-- | tests/bugs150/pr117681/TestAspect.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs150/pr117681/TestAspect.java b/tests/bugs150/pr117681/TestAspect.java new file mode 100644 index 000000000..331677476 --- /dev/null +++ b/tests/bugs150/pr117681/TestAspect.java @@ -0,0 +1,7 @@ +import org.aspectj.lang.annotation.*; + +@Aspect +public class TestAspect { + @DeclareParents("Test") + public static Audit introduced = new AuditImpl(); +} |