Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
assign
/
assert_with_newlines_test.v
8
lines
·
8
sloc
·
123 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
fn
test_assert_with_newlines_in_the_labels() {
2
println(
'start'
)
3
s :=
'123
4
456'
5
assert s ==
'123
6
456'
7
println(
'done'
)
8
}
9