6a8bb8b33d
#KT-17712 fixed
9 lines
192 B
Kotlin
Vendored
9 lines
192 B
Kotlin
Vendored
internal class A @JvmOverloads constructor(nested: Nested = Nested(Nested.FIELD)) {
|
|
|
|
internal class Nested(p: Int) {
|
|
companion object {
|
|
|
|
val FIELD = 0
|
|
}
|
|
}
|
|
} |