Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
checkArguments
/
addNameToArgument
/
mixedNamedAndPositionalArgumentsUsedPositional.kt
blob: d984c15088c969d81eec7615e5bd6483f23cda50 [
file
] [
log
] [
blame
]
// "Add name to argument: 'b = "FOO"'" "true"
fun f
(
a
:
String
,
x
:
Int
,
b
:
String
)
{}
fun g
()
{
f
(
"BAR"
,
x
=
10
,
<caret>"FOO"
)
}