]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/variadic169.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic169.C
1 // DR 2233
2 // { dg-do compile { target c++11 } }
3
4 template<typename ...T> void f(int n = 0, T ...t);
5
6 int main()
7 {
8 f<int>(); // { dg-error "too few arguments" }
9 }
This page took 0.036166 seconds and 5 git commands to generate.