Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/interfaceImplementation.kt
T
2022-03-15 11:38:03 +01:00

12 lines
182 B
Kotlin
Vendored

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