The @var annotation has been moved to the experimental package.

Added a test of a @var variable with null initialization.
This commit is contained in:
Bulgakov Alexander
2016-10-26 23:18:47 +03:00
parent 55619e8030
commit 710a04607b
19 changed files with 105 additions and 50 deletions
@@ -0,0 +1,7 @@
import lombok.val;
class ValNullInit {
void method() {
val x = null;
}
}