mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
119 B
Kotlin
Vendored
10 lines
119 B
Kotlin
Vendored
package test
|
|
|
|
interface Trait {
|
|
fun foo(): String = "foo"
|
|
|
|
fun bar(): String = "bar"
|
|
}
|
|
|
|
open class Impl : Trait {
|
|
} |