Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionFunctions
/
simple.kt
blob: b8274e666933413bb5afb8ab76d3d3fc44ba516b [
file
]
// KJS_WITH_FULL_RUNTIME
fun
StringBuilder
.
first
()
=
this
.
get
(
0
)
fun foo
()
=
StringBuilder
(
"foo"
).
first
()
fun box
()
=
if
(
foo
()
==
'f'
)
"OK"
else
"Fail ${foo()}"