1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/if_guard_redefinition.out
2021-03-23 04:38:36 +01:00

8 lines
205 B
Plaintext

vlib/v/parser/tests/if_guard_redefinition.vv:7:8: error: redefinition of `x`
5 | fn main() {
6 | x := 1
7 | if x := opt_fn() {
| ^
8 | println(x)
9 | }