48db96b66d
Fixed #KT-30628
8 lines
168 B
Kotlin
Vendored
8 lines
168 B
Kotlin
Vendored
package testData.libraries
|
|
|
|
class SomeClassWithConstructors(private val arg: String) {
|
|
constructor(x: Int) : this("Hello")
|
|
fun check() {
|
|
TODO()
|
|
}
|
|
} |