Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
fns
/
method_call_chained_multiline_test.v
9
lines
·
9
sloc
·
160 bytes
·
09948ad68fad3a5e8e74077f4d6923a87cdcb96b
Raw
1
fn
test_method_call_chained_multiline() {
2
mut
s :=
' a b '
3
// vfmt off
4
s = s. trim_space().
5
replace(
' '
,
''
).
6
to_upper()
7
// vfmt on
8
assert s ==
'AB'
9
}
10