mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
9 lines
123 B
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')
|
|
}
|