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

force () in complex bool expressions: (a && b) || c instead of a && b || c

This commit is contained in:
Alexander Medvednikov
2019-08-04 10:18:31 +02:00
parent 58117f1312
commit 350e13679c
7 changed files with 33 additions and 9 deletions

View File

@ -106,6 +106,10 @@ fn test_mut_ptr() {
assert buf[0] == 77
}
fn test_high_fn(f fn(int) int) {
}
fn test_fns() {
// no asserts for now, just test function declarations above
}