v/vlib/v/parser/tests/invalid_using_shared.out

7 lines
208 B
Plaintext

vlib/v/parser/tests/invalid_using_shared.vv:2:5: error: the `shared` keyword is invalid here
1 | fn main() {
2 | if shared true {
| ~~~~~~
3 | println(true)
4 | }