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

fmt: remove parenthesis around single ident (#9696)

This commit is contained in:
Lukas Neubert
2021-04-12 15:01:03 +02:00
committed by GitHub
parent 9427c5f526
commit ada763e0f4
6 changed files with 26 additions and 15 deletions

View File

@ -0,0 +1,3 @@
fn main() {
_ := (cond1 && cond2) || single_ident
}

View File

@ -0,0 +1,3 @@
fn main() {
_ := (cond1 && cond2) || (single_ident)
}