mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 00:21:28 +00:00
23 lines
441 B
Kotlin
Vendored
23 lines
441 B
Kotlin
Vendored
fun test() {
|
|
|
|
fun local(){
|
|
{
|
|
//static instance access
|
|
local()
|
|
}()
|
|
}
|
|
|
|
//static instance access
|
|
{
|
|
//static instance access
|
|
local()
|
|
}()
|
|
|
|
//static instance access
|
|
(::local)()
|
|
}
|
|
|
|
// 3 GETSTATIC ConstClosureOptimizationKt\$test\$1\.INSTANCE
|
|
// 1 GETSTATIC ConstClosureOptimizationKt\$test\$2\.INSTANCE
|
|
// 1 GETSTATIC ConstClosureOptimizationKt\$test\$3\.INSTANCE
|