v2 / vlib / v / fmt / tests / global_keep.vv
16 lines · 15 sloc · 174 bytes · f0e4438e086f8422c8522f97c7dc2d67a24e2db9
Raw
1struct TestInt {
2 i int
3}
4
5__global x = bool(true)
6__global y f32
7__global (
8 spam string
9 foo = int(5)
10)
11__global (
12 a int
13 volatile test_int = TestInt{
14 i: 0
15 }
16)
17