Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/inlineClasses/genericChild.kt
T
Ilmir Usmanov 9c67d8f89e IC Mangling: Correctly mangle functions with generic return type
if the type's parent is inline class.
 #KT-43050 Fixed
 #KT-26130 Fixed
 #KT-32384 Fixed
2020-12-24 14:29:48 +01:00

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) {}