blob: f399d98149cc04be406208cad953692029ee2714 [file] [log] [blame]
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo@libero.it>
// PR c++/10583: ICE using template function with invalid signature.
template <typename>
struct A
{
struct B
{};
};
template <typename T>
void func(A<T>::B* ) // { dg-error "typename" }
{
}
int main()
{
func<void>(0);
}