18 lines
278 B
Kotlin
Vendored
18 lines
278 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
object Object {
|
|
class NestedClass {
|
|
fun test() {
|
|
outerFun()
|
|
outerVal
|
|
OuterObject
|
|
OuterClass()
|
|
}
|
|
}
|
|
|
|
fun outerFun() {}
|
|
val outerVal = 4
|
|
|
|
object OuterObject
|
|
class OuterClass
|
|
}
|