Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
sameNameWithLocalValueParameter.kt
blob: 5929607bfbb13cadfa2f4243e909519a946e355a [
file
]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
fun test
(
a
:
String
):
String
{
context
(
a
:
String
)
fun foo
():
String
{
return
a
}
with
(
"OK"
)
{
return
foo
()
}
}
fun box
():
String
{
return
test
(
"not OK"
)
}