diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-03 00:42:58 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-11-03 00:42:58 +0100 |
commit | f1cf083890c223bf7245190264438740ee724bc9 (patch) | |
tree | 769894a3fccdbd9c7d44f241f700bbc9550c653b /test/transform/resource/after-delombok/ValErrors.java | |
parent | d9ba2a191ac71e7d8689f1ad0e99160b1c8dae3d (diff) | |
download | lombok-f1cf083890c223bf7245190264438740ee724bc9.tar.gz lombok-f1cf083890c223bf7245190264438740ee724bc9.tar.bz2 lombok-f1cf083890c223bf7245190264438740ee724bc9.zip |
val in java, including tests and javac resolution utilities.
Diffstat (limited to 'test/transform/resource/after-delombok/ValErrors.java')
-rw-r--r-- | test/transform/resource/after-delombok/ValErrors.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValErrors.java b/test/transform/resource/after-delombok/ValErrors.java new file mode 100644 index 00000000..5ac785ab --- /dev/null +++ b/test/transform/resource/after-delombok/ValErrors.java @@ -0,0 +1,8 @@ +public class ValErrors { + public void nullType() { + final val a = null; + } + public void unresolvableExpression() { + final val c = d; + } +}
\ No newline at end of file |