Files
kotlin-fork/idea/testData/structureView/fileStructure/InheritedDelegationMethods.Data.kt
T
2015-05-13 16:13:13 +02:00

9 lines
135 B
Kotlin
Vendored

interface Some {
fun first()
fun second()
}
class ClassSome: Some {
override fun first() {}
override fun second() {}
}