Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
DuplicateClosurePrivateVariable.groovy
blob: 3af075f9e70b46a4237d08018a4ffdf428990dbc [
file
] [
log
] [
blame
]
def
foo
()
{
{
it
->
def
x
=
0
}
{
it
->
def
x
=
0
}
// syntax error: "Variable 'x' is already defined"
}