This snippet ``` java List<String> x = Lists.newArrayList(); ``` is converted to ``` xtend var x = Lists.newArrayList ``` and the type of x is lost.
This snippet
is converted to
and the type of x is lost.