Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
ea35743.kt
blob: 31b59f2dcbb4f34f391a96d7d4952cdcca5a4b4d [
file
]
val
Int
.
test
:
String
get
()
=
"test"
fun box
():
String
{
val x
=
"a ${1.test}"
return
if
(
x
==
"a test"
)
"OK"
else
"Fail $x"
}