Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
implicitReceiverAcrossFunctions.fir.kt
blob: c6d94b6800089e786bf6f70b66d10c97fa319b11 [
file
]
interface
I
{
val prop
:
Int
}
open
class
A
{
fun f1
()
{
this
as
I
prop
}
fun f2
()
{
<!
UNRESOLVED_REFERENCE
!>
prop
<!>
}
}
open
class
B
{
fun f
()
{
{
this
as
I
prop
}
<!
UNRESOLVED_REFERENCE
!>
prop
<!>
}
}