Files
lombok/test/transform/resource/before/ValNullInit.java
T
Bulgakov Alexander 710a04607b The @var annotation has been moved to the experimental package.
Added a test of a @var variable with null initialization.
2016-10-26 23:18:47 +03:00

7 lines
77 B
Java

import lombok.val;
class ValNullInit {
void method() {
val x = null;
}
}