blob: d81b6a55e7a6108b04d5be7d35f17d2f026efb93 [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 "variable|template|expression" }
{ // { dg-error ";" }
}
int main()
{
func<void>(0); // { dg-error "undeclared|expression|;" }
}