9c67d8f89e
if the type's parent is inline class. #KT-43050 Fixed #KT-26130 Fixed #KT-32384 Fixed
9 lines
104 B
Kotlin
Vendored
9 lines
104 B
Kotlin
Vendored
inline class X(val x: Any?)
|
|
|
|
interface IFoo<out T : X?> {
|
|
fun foo(): T
|
|
}
|
|
|
|
fun <T : X> foo(x: T) {}
|
|
|