diff options
Diffstat (limited to 'test/transform/resource/after-delombok/ToStringExplicitInclude.java')
-rw-r--r-- | test/transform/resource/after-delombok/ToStringExplicitInclude.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ToStringExplicitInclude.java b/test/transform/resource/after-delombok/ToStringExplicitInclude.java new file mode 100644 index 00000000..e6b4c09a --- /dev/null +++ b/test/transform/resource/after-delombok/ToStringExplicitInclude.java @@ -0,0 +1,8 @@ +class ToStringExplicitInclude { + int x; + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "ToStringExplicitInclude()"; + } +}
\ No newline at end of file |