4bc4f0bce7
#KT-11544 Fixed
17 lines
281 B
Kotlin
Vendored
17 lines
281 B
Kotlin
Vendored
package pack
|
|
|
|
import pack.A.Nested
|
|
|
|
internal class A @JvmOverloads constructor(nested: Nested = Nested(Nested.FIELD)) {
|
|
|
|
internal class Nested(p: Int) {
|
|
companion object {
|
|
|
|
val FIELD = 0
|
|
}
|
|
}
|
|
}
|
|
|
|
internal class B {
|
|
var nested: Nested? = null
|
|
} |