Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
removeFinalUpperBound
/
function.kt
blob: eec8715e97375bcddd95998a966b978f31e042b3 [
file
] [
log
] [
blame
]
// "Remove final upper bound" "true"
data
class
DC
(
val x
:
Int
,
val y
:
String
)
{
fun
<
S
:
Int
<caret>
>
foo
(
b
:
S
)
{
val a
:
S
=
b
}
}