blob: 27bb82c726de9097b46c2e75d29969294531f47f [file] [log] [blame]
// NAME: X
interface T {}
open class A
open class X : A() {
// INFO: {checked: "true"}
fun foo() {
}
}
// SIBLING:
class B : X(), T {
}