40dd229021
#KT-21172 Fixed
8 lines
127 B
Kotlin
Vendored
8 lines
127 B
Kotlin
Vendored
// DISABLE-ERRORS
|
|
class A(i: Int, j: Int) {
|
|
constructor(i: Int) : this(i, 2) {
|
|
a = 1
|
|
}
|
|
|
|
val a<caret>: Int
|
|
} |