mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 15:53:36 +00:00
13 lines
181 B
Kotlin
Vendored
13 lines
181 B
Kotlin
Vendored
// NAME: X
|
|
// INFO: {checked: "true"}
|
|
interface T {}
|
|
|
|
open class A
|
|
|
|
// SIBLING:
|
|
class <caret>B : A(), T {
|
|
// INFO: {checked: "true", toAbstract: "true"}
|
|
fun foo() {
|
|
|
|
}
|
|
} |