diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 16:39:48 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 16:39:48 +0100 |
commit | 06581537f24fe31ee096960be496bc503059a95e (patch) | |
tree | 3732f6fe2117c390f9812b5961dd2d95d4293026 /test/transform/resource/after-ecj/ValComplex.java | |
parent | 5e9e16a6b98da5a17f5efe785917bc1e92265fc8 (diff) | |
download | lombok-06581537f24fe31ee096960be496bc503059a95e.tar.gz lombok-06581537f24fe31ee096960be496bc503059a95e.tar.bz2 lombok-06581537f24fe31ee096960be496bc503059a95e.zip |
More test files, test files updated to be valid java, and ecj test now goes through the complete compile process. This means val and @Delegate testing is now enabled.
TODO: Update -eclipse tests.
Diffstat (limited to 'test/transform/resource/after-ecj/ValComplex.java')
-rw-r--r-- | test/transform/resource/after-ecj/ValComplex.java | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/test/transform/resource/after-ecj/ValComplex.java b/test/transform/resource/after-ecj/ValComplex.java index cb06d3c1..6e435e56 100644 --- a/test/transform/resource/after-ecj/ValComplex.java +++ b/test/transform/resource/after-ecj/ValComplex.java @@ -1 +1,26 @@ -//ignore
\ No newline at end of file +import lombok.val; +public class ValComplex { + private String field = ""; + private static final int CONSTANT = 20; + <clinit>() { + } + public ValComplex() { + super(); + } + public void testComplex() { + final @val char[] shouldBeCharArray = field.toCharArray(); + final @val int shouldBeInt = CONSTANT; + final @val java.lang.Object lock = new Object(); + synchronized (lock) + { + final @val int field = 20; + final @val int inner = 10; + switch (field) { + case 5 : ; + final @val char[] shouldBeCharArray2 = shouldBeCharArray; + final @val int innerInner = inner; + } + } + final @val java.lang.String shouldBeString = field; + } +}
\ No newline at end of file |