Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
repl
/
functionOverloadResolutionAnyBeatsString.repl
blob: 8281e3d0ef3d3a7a76572ada2f06ed401f5cfdb3 [
file
]
>>>
fun foo
(
s
:
String
)
=
"string"
>>>
fun foo
(
a
:
Any
)
=
"any"
>>>
foo
(
"a"
)
any