Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/interfaceImplementation.kt
T

11 lines
181 B
Kotlin
Vendored

interface Named {
val name: String?
}
class Product2 : Named {
override var name: String? = null
constructor(otherName: String) {
this.name = otherName
}
}