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