blob: b8a77ec84b7d993e6d1796cc3768824ca36b8bd3 [file] [log] [blame]
def args = ["one", "two", "three"]
def (one, two, three) = args
one.toString()
def foo
<warning descr="Variable 'foo' might not be assigned">foo</warning>.toString()
(args, foo) = [2, 3]
args.toString()
foo.toString()