f950a0246c
Kotlin default import inserter was unable to correctly insert such imports #KT-34165 fixed
20 lines
328 B
Kotlin
Vendored
20 lines
328 B
Kotlin
Vendored
package demo
|
|
|
|
import demo.One
|
|
|
|
internal class Container {
|
|
var myInt = 1
|
|
}
|
|
|
|
internal object One {
|
|
var myContainer = Container()
|
|
}
|
|
|
|
internal class IntContainer(i: Int)
|
|
internal class Test {
|
|
fun putInt(i: Int) {}
|
|
fun test() {
|
|
putInt(One.myContainer.myInt)
|
|
IntContainer(One.myContainer.myInt)
|
|
}
|
|
} |