OSDN Git Service

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