mirror of
https://github.com/github/codeql.git
synced 2026-05-05 21:55:19 +02:00
Kotlin: Add support for interfaces
This commit is contained in:
@@ -16,3 +16,15 @@ open class ClassFour: ClassThree() {
|
||||
|
||||
class ClassFive: ClassFour() {
|
||||
}
|
||||
|
||||
interface IF1 {
|
||||
fun funIF1() {}
|
||||
}
|
||||
|
||||
interface IF2 {
|
||||
fun funIF2() {}
|
||||
}
|
||||
|
||||
class ClassSix: ClassFour(), IF1, IF2 {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user