Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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()}"