aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/expr/call4.C
blob: b4f2d60be7e59ed547463892131e6730ca3a7a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// { dg-do compile }

// Copyright (C) 2007 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 22 Jul 2007 <nathan@codesourcery.com>

// Origin: Danny Boelens <danny.boelens@artwork-systems.com>
// PR 32839.  Default arguments propagated through the type system to
// an indirect call.

template<typename T>
struct TPL
{
  enum Whatever {e1, e2};
 
  static void Quux (int i = e1 | e2);
};

template <typename F>
void DoIt (F fun)
{
  fun (); // { dg-error "too few arguments" }
}

void Foo ()
{
  DoIt (&TPL<int>::Quux);
}