int[3] test1()
{
  int[3] arr;
  ...
}

disasm shows:
- arr created on stack
- arr address returned
- stack changed
- data lost.

Reply via email to