Georgii Ustinov created GROOVY-11744:
----------------------------------------
Summary: Unnamed variables are actually used
Key: GROOVY-11744
URL: https://issues.apache.org/jira/browse/GROOVY-11744
Project: Groovy
Issue Type: Bug
Reporter: Georgii Ustinov
I am currently implementing Groovy 5 support inside Intellij IDEA and
encountered the following behaviour. Consider the following code:
{code:java}
package org.example.demo
static void main(String[] args) {
def _ = 1
def (_, _) = [2, 3]
println _
} {code}
I expected that it will print 1, since variable declaration contains only
unnamed variables.
Actually it prints 3. The same behaviour can be encountered here:
{code:java}
def _ = 1
def x = (_, _) -> {
println(_)
}
x(2, 3){code}
I beileve this is a bug.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)