Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
removeFinalUpperBound
/
function.kt
blob: eec8715e97375bcddd95998a966b978f31e042b3 [
file
]
// "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
}
}