blob: 50ec37f2eae2ed918affc892563d73ddd3d87f45 [file] [log] [blame]
// { dg-do compile }
// Origin: Volker Reichelt <reichelt@gcc.gnu.org>
// PR c++/11076: ICE for invalid access declaration containing typename.
template<typename, typename T=void> struct A
{
typedef A<T,T> B;
};
template <typename T> struct C
{
typedef typename A<T>::B X;
X::Y; // { dg-error "not a base type" }
};
C<void> c; // { dg-error "instantiated" }