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

fix defer_test

This commit is contained in:
Alexander Medvednikov
2019-12-08 15:30:14 +03:00
parent c9886e6f42
commit 02eee49d25
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ fn set_num(i int, n mut Num) {
if i < 5 {
return
} else {
n.val+=1
n.val++
}
}