diff options
Diffstat (limited to 'tests/bugs166/pr284862/AnnotatedMethodImpl.aj')
-rw-r--r-- | tests/bugs166/pr284862/AnnotatedMethodImpl.aj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs166/pr284862/AnnotatedMethodImpl.aj b/tests/bugs166/pr284862/AnnotatedMethodImpl.aj new file mode 100644 index 000000000..0bbe39b4c --- /dev/null +++ b/tests/bugs166/pr284862/AnnotatedMethodImpl.aj @@ -0,0 +1,9 @@ + +public aspect AnnotatedMethodImpl { + + @PresentAnnotation + public String AnnotatedMethodInterface.getSomething() { + return "meth"; + } + +} |