// test deref

gv

inc(v)
  *v = *v + 1

main()
  gv = 2
  inc(&gv)
  print(gv)
