1 2 3 4 5 6 7 8 9
import lombok.var; public class VarNullInit { public VarNullInit() { super(); } void method() { @var java.lang.Object x = null; } }