// Origin: PR c++/45606 // { dg-do compile } template struct S0 { typedef int const_iterator; }; template struct Test { typedef S0 SAlias; typedef typename SAlias::const_iterator const_iterator; const_iterator begin (); }; template typename S0::const_iterator Test::begin() { return 0; }