v2 / vlib / v / gen / c / testdata / volatile.c.must_have
4 lines · 4 sloc · 127 bytes · a27833ed0d796d1fc44396fd944afee1319c0189
Raw
1volatile int *zzz = HEAP(int, (123));
2volatile int* pzzz = &(*(zzz));
3volatile int a_volatile_field;
4int a_non_volatile_field;
5