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