Kotlin: Add support for interfaces

This commit is contained in:
Ian Lynagh
2021-09-02 16:12:28 +01:00
parent 14e970044a
commit 486cff5df1
7 changed files with 39 additions and 7 deletions

View File

@@ -16,3 +16,15 @@ open class ClassFour: ClassThree() {
class ClassFive: ClassFour() {
}
interface IF1 {
fun funIF1() {}
}
interface IF2 {
fun funIF2() {}
}
class ClassSix: ClassFour(), IF1, IF2 {
}