Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
sameNameWithLocalValueParameter.kt
blob: fdb990425fe97b0c1a1ccaf367a94328f190d712 [
file
]
// 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"
)
}