Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
addNameToArgument
/
incompleteCall.kt.after
blob: 018fd58336874405f53f2c5ccb57b82c60d76ba1 [
file
] [
log
] [
blame
]
// ERROR: No value passed for parameter 'p'
fun foo
(
s
:
String
,
b
:
Boolean
,
p
:
Int
){}
fun bar
()
{
foo
(
""
,
<caret>
b
=
true
)
}