<div dir="ltr">Hi folks,<div><br></div><div>I'm confused by the following code snippet:</div><div><br></div><div><div>#include <memory></div><div>void foo(int *x) { std::unique_ptr<int>(x); }</div></div><div><br></div><div>both clang and gcc warn that this redefines x, but I don't understand why this</div><div>is a declaration of x. I guess I would have expected a temporary unique_ptr that gets destructed immediately or an error. How come this actually defines a variable called x?</div><div><br></div><div>To give some background about where this came up, a user wanted to do</div><div>C++> std::unique_ptr<int>(x);</div><div>in my Clang-based interactive C++ REPL. Behind the scenes this gets transformed into the function above and then I try to insert a return statement on the last statement in the body to automatically grab the result. This works well in most cases but failed here because Clang thinks this is a variable declaration, so I'd like to understand why this is happening.</div><div><br></div><div>Keno</div></div>