PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / expr / call5.C
blob023ad81f067ca1079635b110886829fa5eba8909
1 // { dg-do compile }
3 // Copyright (C) 2007 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 22 Jul 2007 <nathan@codesourcery.com>
6 // PR 32839.  Default arguments propagated through the type system to
7 // an indirect call.
9 void Quux (int i = 0);
10 void Baz (int i);
12 void Foo ()
14   __typeof (Quux) *q = Baz;
16   q (); // { dg-error "too few arguments" }
19