mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
18 lines
269 B
Plaintext
Vendored
18 lines
269 B
Plaintext
Vendored
// NAME: X
|
|
// INFO: {checked: "true"}
|
|
interface T {}
|
|
|
|
open class A
|
|
|
|
interface X : T {
|
|
// INFO: {checked: "true", toAbstract: "true"}
|
|
fun foo()
|
|
}
|
|
|
|
// SIBLING:
|
|
class B : A(), X {
|
|
// INFO: {checked: "true", toAbstract: "true"}
|
|
override fun foo() {
|
|
|
|
}
|
|
} |