mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 22:26:17 +00:00
[var] various upgrades to var:
* var is promoted to the main package. * It is no longer an opt-in thing. * bug: var (unlike val) is allowed in old-style for loops, but if you multi-init: for (var i = 0, j="Foo";;), you now get an error that you can't do that. * tests both for the multi-for situation and the new main package variant.
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
//CONF: lombok.var.flagUsage = ALLOW
|
||||
import lombok.experimental.var;
|
||||
import lombok.var;
|
||||
|
||||
public class VarComplex {
|
||||
private String field = "";
|
||||
|
||||
Reference in New Issue
Block a user