dead2516c2
#KT-24405 Fixed #KT-25883 Fixed
11 lines
136 B
Plaintext
Vendored
11 lines
136 B
Plaintext
Vendored
open class Class {
|
|
open fun foo(): Int = 4
|
|
}
|
|
|
|
interface Interface {
|
|
fun foo(): Int
|
|
}
|
|
|
|
class ChildClass : Class(), Interface {
|
|
}
|