mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
6 lines
208 B
Text
6 lines
208 B
Text
vlib/v/parser/tests/invalid_using_static.vv:2:5: error: the `static` keyword is invalid here
|
|
1 | fn main() {
|
|
2 | if static true {
|
|
| ~~~~~~
|
|
3 | println(true)
|
|
4 | }
|