Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
thisAndSuper
/
QualifiedThis.kt
blob: 44ee170f410ef3b16d2e5e7262aa33665a07b1c5 [
file
]
// FILE: f.kt
class
A
()
{
fun foo
()
:
Unit
{
this
@A
this
<!
UNRESOLVED_REFERENCE
!>
@a
<!>
this
}
val x
=
this
@A
.<!
DEBUG_INFO_LEAKING_THIS
!>
foo
<!>()
val y
=
this
.<!
DEBUG_INFO_LEAKING_THIS
!>
foo
<!>()
val z
=
<!
DEBUG_INFO_LEAKING_THIS
!>
foo
<!>()
}