Files
kotlin-fork/idea/testData/multiModuleQuickFix/constructorWithDelegation/jvm/Constructors.kt.after
T
2018-11-21 15:13:00 +03:00

6 lines
250 B
Plaintext
Vendored

// Constructors: to be implemented
actual class Constructors actual constructor(s: String) {
actual constructor(i: Int) : this() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}