Files
kotlin-fork/idea/testData/decompiler/navigation/fromJavaSource/classAndConstructors.kt
T
Igor Yakovlev 48db96b66d Improved kotlin decompiler range indexes
Fixed #KT-30628
2020-02-11 17:42:12 +03:00

8 lines
168 B
Kotlin
Vendored

package testData.libraries
class SomeClassWithConstructors(private val arg: String) {
constructor(x: Int) : this("Hello")
fun check() {
TODO()
}
}