Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
ThisWithWrongQualifier.groovy
blob: 04e89b5c7d6e3ab9b84341e6a73831e095f6092a [
file
] [
log
] [
blame
]
class
X
{
def
foo
(){
X x
=
new
X
();
<
error descr
=
"Qualified this is allowed only in nested/inner classes"
>
x
.
this
</
error
>.
foo
();
}
}