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