v2 / vlib / v / parser / tests / invalid_using_volatile.vv
5 lines · 5 sloc · 53 bytes · 1d83ab6be167ccfde412c854c703bccf0a494619
Raw
1fn main() {
2 if volatile true {
3 println(true)
4 }
5}
6