// { dg-do "compile" } // { dg-options "-std=gnu++0x" } template struct list {}; template struct vector { operator T() const; }; void f() { vector> v; const vector vi = static_cast>(v); }