Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
addNameToArgument
/
beforeOtherNamed.kt.after
blob: f8e1bec9143e3b423dd9315fc453c4fc6b6ebca1 [
file
]
// INTENTION_TEXT: "Add 'a =' to argument"
fun foo
(
a
:
Int
,
b
:
String
){}
fun bar
()
{
foo
(
a
=
1
,
b
=
""
)
}