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

parser: revert silent _ prefix rule

This commit is contained in:
Alexander Medvednikov
2020-04-26 05:34:21 +02:00
parent 60a0ba5eaa
commit 8000eb3656
2 changed files with 1 additions and 4 deletions

View File

@ -112,7 +112,7 @@ fn test_no_line_ending() {
mut row_count := 0
for {
_row := csv_reader.read() or {
csv_reader.read() or {
break
}
row_count++