v2 / vlib / v / parser / tests / invalid_using_volatile.out
6 lines · 6 sloc · 216 bytes · 1d83ab6be167ccfde412c854c703bccf0a494619
Raw
1vlib/v/parser/tests/invalid_using_volatile.vv:2:5: error: the `volatile` keyword is invalid here
2 1 | fn main() {
3 2 | if volatile true {
4 | ~~~~~~~~
5 3 | println(true)
6 4 | }
7