Skip to content

Instantly share code, notes, and snippets.

@fortheday
Last active January 31, 2018 09:03
Show Gist options
  • Save fortheday/85897589825909c30e1248f4e2d08d63 to your computer and use it in GitHub Desktop.
Save fortheday/85897589825909c30e1248f4e2d08d63 to your computer and use it in GitHub Desktop.
class CTest {
public:
~CTest() = default;
};
CTest *pTest = nullptr;
{
CTest &&rrInt = CTest();
pTest = &rrInt;
} // ~CTestwekj()
*pTest = *pTest; // DANGLING PTR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment