mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 15:53:18 +00:00
17 lines
146 B
Kotlin
Vendored
17 lines
146 B
Kotlin
Vendored
interface A
|
|
|
|
interface B {
|
|
fun foo()
|
|
}
|
|
|
|
interface C {
|
|
val bar: Int
|
|
}
|
|
|
|
interface D {
|
|
fun baz() = 5
|
|
}
|
|
|
|
interface E {
|
|
class InsideE
|
|
} |