Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
parser
/
tests
/
invalid_using_static.out
6
lines
·
6
sloc
·
208 bytes
·
1d83ab6be167ccfde412c854c703bccf0a494619
Raw
1
vlib/v/parser/tests/invalid_using_static.vv:2:5: error: the `static` keyword is invalid here
2
1 | fn main() {
3
2 | if static true {
4
| ~~~~~~
5
3 | println(true)
6
4 | }
7