v2 / vlib / v / gen / c / testdata / global_export_nix.vv
6 lines · 4 sloc · 102 bytes · e1655fff1f1db582d951e454396af11607e1dc7f
Raw
1// vtest vflags: -enable-globals
2
3const foo = 'bar'
4
5@[export]
6__global global_exported = foo + 'qux'
7