Hi all, As GROOVY-8498[1] describes as follows, in order to compatibility with Java 10+, Groovy should support `var` the reserved type name. The reference implementation has been pushed to master and 2.6.0 branch, you can find it via the link[2].
Any thoughts? *GROOVY-8498:* ``` This is to provide compatibility with: http://openjdk.java.net/jeps/286 (Java 10) http://openjdk.java.net/jeps/323 (targeted for Java 11) Java 10 provides var to allow reduced ceremony by avoiding manifest declaration of types for local variables for cases where type inferencing can be supported. Groovy already does this with "def" and has it's own approach for type inferencing within type-checked/compile static code. With this in mind, it seems to make most sense for Groovy to have "var" as an alias for "def" rather than closely mimic only the use cases allowed by Java. ``` Cheers, Daniel.Sun [1] https://issues.apache.org/jira/browse/GROOVY-8498 [2] https://github.com/apache/groovy/commit/f30741f519f4012c7cca3959ade9e4ec12625e45 -- Sent from: http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html