summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/default-arguments-cxx0x.cpp
blob: 8d8833c6702e443df172bd5bfba8a7df00a85d45 (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
// RUN: clang-cc -fsyntax-only -std=c++0x -verify %s

// Test default template arguments for function templates.
template<typename T = int>
void f0();

template<typename T>
void f0();

void g0() {
  f0(); // okay!
} 

template<typename T, int N = T::value>
int &f1(T);

float &f1(...);

struct HasValue {
  static const int value = 17;
};

void g1() {
  float &fr = f1(15);
  int &ir = f1(HasValue());
}
OpenPOWER on IntegriCloud