mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
18 lines
279 B
Kotlin
Vendored
18 lines
279 B
Kotlin
Vendored
// "Implement interface" "true"
|
|
// WITH_RUNTIME
|
|
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
|
|
|
class Container {
|
|
interface <caret>Base {
|
|
val x: Boolean
|
|
|
|
val y: Double
|
|
get() = 3.14
|
|
|
|
fun foo(): String = ""
|
|
|
|
fun bar(z: Int): String
|
|
}
|
|
}
|
|
|