view gcc/testsuite/g++.dg/template/crash7.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }

// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>

// PR c++/10108: ICE in tsubst_decl for error due to non-existence
// nested type.

template <typename> struct A
{
    template <typename> A(typename A::X) {} // { dg-error "incomplete" }
};

// We currently don't give the "no match" error because we don't add the
// invalid constructor template to TYPE_METHODS.
A<void> a;			// { dg-message "required" }