Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
variables
/
removeValVarFromParameter
/
loopMultiParameter.kt.after
blob: a51fc847aa34d2f443e51508163b5cf110769787 [
file
] [
log
] [
blame
]
// "Remove 'val' from parameter" "true"
class
Pair
<
A
,
B
>
{
operator
fun component1
():
A
=
null
!!
operator
fun component2
():
B
=
null
!!
}
fun f
(
list
:
List
<
Pair
<
String
,
String
>>)
{
for
((
x
,
y
)
in
list
)
{
}
}