For the following function, the second time will fail when try to rename `test` twice: ``` void hello() { int test3 = 123; test3 = 456; std::cout << test3 << std::endl; } ```