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
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
inline class X(val x: Any?)
|
||||
|
||||
interface IFoo<out T : X?> {
|
||||
fun foo(): T
|
||||
}
|
||||
|
||||
fun <T : X> foo(x: T) {}
|
||||
|
||||
Reference in New Issue
Block a user