d2592e4a2c
#KT-7114 Fixed
19 lines
282 B
Kotlin
Vendored
19 lines
282 B
Kotlin
Vendored
package test
|
|
|
|
fun use() {
|
|
Default.create()
|
|
|
|
Explicit.<!INVISIBLE_MEMBER!>create<!>()
|
|
}
|
|
|
|
private class Default {
|
|
companion object {
|
|
fun create() = Default()
|
|
}
|
|
}
|
|
|
|
private class Explicit {
|
|
private companion object {
|
|
fun create() = Explicit()
|
|
}
|
|
} |