diff options
Diffstat (limited to 'test/transform/resource/before/WitherDeprecated.java')
-rw-r--r-- | test/transform/resource/before/WitherDeprecated.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/transform/resource/before/WitherDeprecated.java b/test/transform/resource/before/WitherDeprecated.java new file mode 100644 index 00000000..efd1af43 --- /dev/null +++ b/test/transform/resource/before/WitherDeprecated.java @@ -0,0 +1,15 @@ +import lombok.experimental.Wither; + +class WitherDeprecated { + + @Deprecated + @Wither int annotation; + + /** + * @deprecated + */ + @Wither int javadoc; + + WitherDeprecated(int annotation, int javadoc) { + } +}
\ No newline at end of file |