Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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"
)
}