Files
kotlin-fork/j2k/tests/testData/ast/constructors/nestedClassNameInParameterDefaults2.kt
T
Valentin Kipyatkov 930022aaac J2K: correct conversion of nested class references
#KT-5294 Fixed
 #KT-5400 Fixed
2014-07-25 16:54:23 +04:00

15 lines
209 B
Kotlin

import A.Nested
class A(nested: Nested = Nested(Nested.FIELD)) {
class Nested(p: Int) {
class object {
public val FIELD: Int = 0
}
}
}
class B {
var nested: Nested
}