c30aa7db84
#KT-4234 Fixed #KT-4496 Fixed
23 lines
426 B
Kotlin
Vendored
23 lines
426 B
Kotlin
Vendored
fun test() {
|
|
|
|
fun local(){
|
|
{
|
|
//static instance access
|
|
local()
|
|
}()
|
|
}
|
|
|
|
//static instance access
|
|
{
|
|
//static instance access
|
|
local()
|
|
}()
|
|
|
|
//static instance access
|
|
(::local)()
|
|
}
|
|
|
|
// 3 GETSTATIC _DefaultPackage\$.+\$test\$1\.INSTANCE\$
|
|
// 1 GETSTATIC _DefaultPackage\$.+\$test\$2\.INSTANCE\$
|
|
// 1 GETSTATIC _DefaultPackage\$.+\$test\$3\.INSTANCE\$
|