Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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"
}