Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
MultipleVarNotAssigned.groovy
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
()