aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/default2.C
blob: be0e5c32413d1ea62553183a124fa27fae38f6cc (plain)
1
2
3
4
5
6
7
8
9
// PR c++/16829
// { dg-do "compile" }

template<typename T> void foo(T, int = 0, int) {}  // { dg-error "default" }

void bar()
{
  foo(0);
}