Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
addGenericUpperBound
/
boundAlreadyExists.kt
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>
>()