Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
var_decl_shadows_fn.out
7
lines
·
7
sloc
·
238 bytes
·
d7cea593c7d84aaaa117c9b3f9ce260f2b2775d1
Raw
1
vlib/v/checker/tests/var_decl_shadows_fn.vv:6:2: notice: variable `shadowed` shadows a function declaration
2
4 |
3
5 | fn main() {
4
6 | shadowed := 5
5
| ~~~~~~~~
6
7 | println(shadowed)
7
8 | _ = shadowed
8