int assign(int x, int y) { x = y; return x; } int assign_5(int x) { x = 5; return x; } int assign0() { int y = 1; int x = y; return x; }