Files
kotlin-fork/jps-plugin/testData/incremental/classHierarchyAffected/secondaryConstructorAdded/A.kt.new.1
T
2016-01-21 18:14:56 +03:00

3 lines
73 B
Groff
Vendored

open class A(val x: Int) {
constructor(x: String) : this(x.toInt())
}