diff options
author | Andy Clement <aclement@gopivotal.com> | 2014-08-27 13:25:21 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2014-08-27 13:25:21 -0700 |
commit | d929114a6659d64d71c47f7bf8f70e9973e5c857 (patch) | |
tree | 9960a5e53a5b3cf697196191ded1fee9e55fa738 /tests/bugs183/442425/EntityController.java | |
parent | 62b5e69a857ef64c71c39176d3fadc51c308ea02 (diff) | |
download | aspectj-d929114a6659d64d71c47f7bf8f70e9973e5c857.tar.gz aspectj-d929114a6659d64d71c47f7bf8f70e9973e5c857.zip |
442425: fix error on attempted annotation style decp
Diffstat (limited to 'tests/bugs183/442425/EntityController.java')
-rw-r--r-- | tests/bugs183/442425/EntityController.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs183/442425/EntityController.java b/tests/bugs183/442425/EntityController.java new file mode 100644 index 000000000..2423b642d --- /dev/null +++ b/tests/bugs183/442425/EntityController.java @@ -0,0 +1,10 @@ +package de.scrum_master.app; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.TYPE) +public @interface EntityController {} |