930022aaac
#KT-5294 Fixed #KT-5400 Fixed
9 lines
162 B
Kotlin
9 lines
162 B
Kotlin
class A(nested: A.Nested = A.Nested(A.Nested.FIELD)) {
|
|
|
|
class Nested(p: Int) {
|
|
class object {
|
|
|
|
public val FIELD: Int = 0
|
|
}
|
|
}
|
|
} |