Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
thisAndSuper
/
thisInInnerClasses.fir.kt
blob: 37894b815813319c65950b81637fd0fd3c95805f [
file
]
// !CHECK_TYPE
class
A
(
val a
:
Int
)
{
inner
class
B
()
{
val x
=
checkSubtype
<
B
>(
this
@B
)
val y
=
checkSubtype
<
A
>(
this
@A
)
val z
=
checkSubtype
<
B
>(
this
)
val
Int
.
xx
:
Int
get
()
=
checkSubtype
<
Int
>(
this
)
}
}