// Test global 

global g = 3;
assert_true(g == 3);

var v := g;
f();


global &h = v;
assert_true(h == v)
v = 3;
assert_true(h == 3)
