addb048ce9
This is to align the behavior with K1. ^KT-57754 Fixed Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
interface IBase<T> {
|
|
fun foo(x: Int)
|
|
val bar: Int
|
|
fun <X> qux(t: T, x: X)
|
|
}
|
|
|
|
class Test<TT>(impl: IBase<TT>) : IBase<TT> by impl
|