vxx2 / vlib / v / checker / tests / redundant_parentheses_warning.out
7 lines · 7 sloc · 224 bytes · 0896290d376fe09da18278b0c1ce825942306b1d
Raw
1vlib/v/checker/tests/redundant_parentheses_warning.vv:3:7: notice: redundant parentheses are used
2 1 | fn main() {
3 2 | a := 2
4 3 | b := ((a + 2))
5 | ~~~~~~~~~
6 4 | println(b)
7 5 | }
8