1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/assert_with_newlines_test.v

9 lines
123 B
V

fn test_assert_with_newlines_in_the_labels() {
println('start')
s := '123
456'
assert s == '123
456'
println('done')
}