1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/invalid_using_volatile.out

7 lines
216 B
Plaintext

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