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