diff options
Diffstat (limited to 'test/transform/resource/after-ecj/ValErrors.java')
-rw-r--r-- | test/transform/resource/after-ecj/ValErrors.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test/transform/resource/after-ecj/ValErrors.java b/test/transform/resource/after-ecj/ValErrors.java index cb06d3c1..1bd61f87 100644 --- a/test/transform/resource/after-ecj/ValErrors.java +++ b/test/transform/resource/after-ecj/ValErrors.java @@ -1 +1,12 @@ -//ignore
\ No newline at end of file +import lombok.val; +public class ValErrors { + public ValErrors() { + super(); + } + public void unresolvableExpression() { + val c = d; + } + public void arrayInitializer() { + val e = {"foo", "bar"}; + } +}
\ No newline at end of file |