blob: 3c69514e243e5ee402a4a62e781d689fc554a359 (
plain)
1
2
3
4
5
6
7
8
9
|
// { dg-do compile }
// Origin: kparz@iastate.edu
// PR c++/7939: ICE for invalid function parameter after template
// substitution.
template <class T, class U> void foo(T, U) {}
template <class T> void foo<T,void>(T, void) {} // { dg-error "incomplete|invalid|partial" }
|