Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
objects
/
localObjectInsideObject.kt
blob: 77fe0cf4e300727d92e8dbf17f68b23d0f06c446 [
file
]
// FIR_IDENTICAL
// CHECK_TYPE
fun foo
()
{
val a
=
object
{
val b
=
object
{
val c
=
42
}
}
checkSubtype
<
Int
>(
a
.
b
.
c
)
}