Files
kotlin-fork/nj2k/testData/newJ2k/constructors/nestedClassNameInParameterDefaults3.kt
T
Ilya Kirillov f9fac0acf5 New J2K: do not save import statements in files as we print fqNames for calls
This may cause conflicts on shortening fq references post-processing step
2019-09-24 17:13:11 +03:00

13 lines
266 B
Kotlin
Vendored

package pack
internal class A @JvmOverloads constructor(nested: Nested? = Nested(Nested.FIELD)) {
internal class Nested(p: Int) {
companion object {
const val FIELD = 0
}
}
}
internal class B {
var nested: A.Nested? = null
}