diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-20 22:37:46 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-20 22:37:46 +0100 |
commit | f153f1cda304d56f9b20cd5e39adf83e74067045 (patch) | |
tree | 332bb85125a3134a15ba132f9fbfa3ef182b4e7f /test/transform/resource/after-delombok | |
parent | 19de8fbe4743afc58df39555602c67e46fc2e016 (diff) | |
parent | 296d1c2ed8a6aa29fb2a1ce7f16ea9e39b49d7d5 (diff) | |
download | lombok-f153f1cda304d56f9b20cd5e39adf83e74067045.tar.gz lombok-f153f1cda304d56f9b20cd5e39adf83e74067045.tar.bz2 lombok-f153f1cda304d56f9b20cd5e39adf83e74067045.zip |
Merge the @Singular feature and the fix for ecj and the shadowloader.
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/EncodingUsAscii.java | 9 | ||||
-rw-r--r-- | test/transform/resource/after-delombok/EncodingUtf8.java | 8 |
2 files changed, 17 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/EncodingUsAscii.java b/test/transform/resource/after-delombok/EncodingUsAscii.java new file mode 100644 index 00000000..a9e6b1a5 --- /dev/null +++ b/test/transform/resource/after-delombok/EncodingUsAscii.java @@ -0,0 +1,9 @@ +//ENCODING: US-ASCII +class EncodingUsAscii { + String foo\u0e51\u0e51 = "\016\t\b "; + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "EncodingUsAscii(foo\u0e51\u0e51=" + this.foo\u0e51\u0e51 + ")"; + } +}
\ No newline at end of file diff --git a/test/transform/resource/after-delombok/EncodingUtf8.java b/test/transform/resource/after-delombok/EncodingUtf8.java new file mode 100644 index 00000000..9ae3e30a --- /dev/null +++ b/test/transform/resource/after-delombok/EncodingUtf8.java @@ -0,0 +1,8 @@ +class EncodingUtf8 { + String foo๑๑ = "\016\t\b "; + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "EncodingUtf8(foo๑๑=" + this.foo๑๑ + ")"; + } +}
\ No newline at end of file |