blob: a475c3533a45a483f05cc7e0e1f2d2437fc1c1a3 [file] [log] [blame]
// "class org.jetbrains.kotlin.idea.quickfix.AddGenericUpperBoundFix" "false"
// ERROR: Type argument is not within its bounds: should be subtype of 'Any'
fun <T : Any> foo() = 1
fun <E : Any?> bar() = foo<E<caret>>()