diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-10 22:19:46 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-10 22:19:46 +0100 |
commit | 632027249b813bfabd457c07ebc89c4456e8175d (patch) | |
tree | a18ebcdab6a9ba1c77d4625ef6f1fb15c8bab5ea /test/transform/resource/before/ValErrors.java | |
parent | 249566813149f8e6984561d9d2ba4e348974dc1a (diff) | |
download | lombok-632027249b813bfabd457c07ebc89c4456e8175d.tar.gz lombok-632027249b813bfabd457c07ebc89c4456e8175d.tar.bz2 lombok-632027249b813bfabd457c07ebc89c4456e8175d.zip |
All tests pass! - The test framework has been updated a bit to fit with the new way delombok works.
Diffstat (limited to 'test/transform/resource/before/ValErrors.java')
-rw-r--r-- | test/transform/resource/before/ValErrors.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/transform/resource/before/ValErrors.java b/test/transform/resource/before/ValErrors.java index 742bca6d..7c5c0a8b 100644 --- a/test/transform/resource/before/ValErrors.java +++ b/test/transform/resource/before/ValErrors.java @@ -1,9 +1,9 @@ public class ValErrors { - public void nullType() { - val a = null; - } - public void unresolvableExpression() { val c = d; } + + public void arrayInitializer() { + val e = { "foo", "bar"}; + } }
\ No newline at end of file |