[Bug c++/54466] [C++11] Recursive Type Alias, Member Function Pointer, Segmentation Fault

redi at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Tue Oct 16 23:09:00 GMT 2012


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54466

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-10-16 23:09:30 UTC ---
template<typename T>
  struct X { };

template<typename T>
  using Y = const X<T>;

template<typename T>
  using Z = Y<T>;



More information about the Gcc-bugs mailing list