このドキュメントの937 ページに、次のコードがあります。
template<class T> class Safe
{
T* p; // p points to a T allocated using new
public:
Safe() : p(new T) {}
~Safe() { delete p; }
Safe& operator=(const Safe& a) { *p = *a.p; return *this; }
// ...
};
p が指すオブジェクトは、上記の代入演算子でリークされるようです。