930022aaac
#KT-5294 Fixed #KT-5400 Fixed
17 lines
228 B
Kotlin
17 lines
228 B
Kotlin
package pack
|
|
|
|
import pack.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
|
|
} |