Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
repl
/
completion
/
functions.kt
blob: a50892bca6d0335c7fd65ce86c1427fbf26855af [
file
] [
log
] [
blame
]
>>
fun foo
()
{}
>>
fun foo
(
i
:
Int
)
{}
>>
fun foo
(
s
:
String
=
"asd"
)
{}
>>
foo
(
3
)
--
fo
// EXIST: { itemText: "foo", tailText:"()" }
// EXIST: { itemText: "foo", tailText:"(i: Int)" }
// EXIST: { itemText: "foo", tailText:"(s: String = ...)" }