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