Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
();
}
}