// "Add 'kotlin.Any' as upper bound for E" "true" // ERROR: Type parameter bound for U in fun foo(x: T, y: U): Int
is not satisfied: inferred type F is not a subtype of Any // COMPILER_ARGUMENTS: -XXLanguage:-NewInference fun foo(x: T, y: U) = 1 fun bar(x: E, y: F) = foo(x, y)