v2 / vlib / v / tests / assign / assert_with_newlines_test.v
8 lines · 8 sloc · 123 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_assert_with_newlines_in_the_labels() {
2 println('start')
3 s := '123
4456'
5 assert s == '123
6456'
7 println('done')
8}
9