Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
globals
/
global_var_redeclare.out
7
lines
·
7
sloc
·
226 bytes
·
00148d11fcd9cc8aa115c62a794719d46bf7894e
Raw
1
vlib/v/checker/tests/globals/global_var_redeclare.vv:4:2: notice: the global variable named `foobar` already exists
2
2 |
3
3 | fn main() {
4
4 | foobar := 2
5
| ~~~~~~
6
5 | println(foobar)
7
6 | }
8