PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash7.C
blob691628e787817eab00bc2c9191cd60a5a5d6e080
1 // { dg-do compile }
3 // Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
5 // PR c++/10108: ICE in tsubst_decl for error due to non-existence
6 // nested type.
8 template <typename> struct A
10     template <typename> A(typename A::X) {} // { dg-error "incomplete" }
13 // We currently don't give the "no match" error because we don't add the
14 // invalid constructor template to TYPE_METHODS.
15 A<void> a;                      // { dg-message "required" }