// test pass by reference

inc(x)
  *x = *x + 1

main()
  a = 1
  inc(&a)
  print(a)
