blob: 1e78cbb62fed997e584fc1d88cbd212a691d8e4e [file] [log] [blame]
// { dg-do compile { target c++11 } }
// PR C++/71710 ICE with decltype & using
template < typename > struct A
{
A a; // { dg-error "incomplete" }
template < int > using B = decltype (a);
B < 0 > b; // { dg-prune-output "B. does not name a type" }
template < int C > B < C > foo ();
};