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