aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WitherPlain.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-07-12 02:58:26 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-07-12 02:58:26 +0200
commit3cf9ffed29cfe56734570b1c3c57d924ac7416df (patch)
treed7a9a68e89ccf4af2bf52ad4b90f0c2dc0d6de9b /test/transform/resource/before/WitherPlain.java
parent1865bd7309b9d1dc743f83ccdbd7204fb0939ecd (diff)
downloadlombok-3cf9ffed29cfe56734570b1c3c57d924ac7416df.tar.gz
lombok-3cf9ffed29cfe56734570b1c3c57d924ac7416df.tar.bz2
lombok-3cf9ffed29cfe56734570b1c3c57d924ac7416df.zip
Wither support + tests (javac only; ecj tests are currently set to ignore).
Diffstat (limited to 'test/transform/resource/before/WitherPlain.java')
-rw-r--r--test/transform/resource/before/WitherPlain.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/transform/resource/before/WitherPlain.java b/test/transform/resource/before/WitherPlain.java
new file mode 100644
index 00000000..7f931217
--- /dev/null
+++ b/test/transform/resource/before/WitherPlain.java
@@ -0,0 +1,8 @@
+import lombok.experimental.Wither;
+class WitherPlain {
+ @lombok.experimental.Wither int i;
+ @Wither final int foo;
+
+ WitherPlain(int i, int foo) {
+ }
+}