Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
sameNameWithOuterContext.kt
blob: c09c5f7082c2dab5ea7066161663bf5e9be3fb5b [
file
]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
context
(
a
:
String
)
val p
get
()
=
context
(
a
:
String
)
fun
():
String
{
return
a
}
fun box
():
String
{
with
(
"not OK"
)
{
return
p
(
"OK"
)
}
}