blob: c66bdecee49a8d87c33c5eec528f85e5b18cd1e7 [file] [log] [blame]
interface IFooStr {
fun foo(x: String)
}
interface IBar {
val bar: Int
}
abstract class CFoo<T> {
fun foo(x: T) {}
}
class Test1 : CFoo<String>(), IFooStr, IBar {
override val bar: Int = 42
}