summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-function3.C
blob: e8ca7bc68c9a52bd256c52a0a4239392220b73b6 (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
28
29
30
// { dg-do compile }
// { dg-options "-std=gnu++0x" }

// From N2235

// function template 1
template<typename T>
  constexpr int bytesize(T t)
  { return sizeof (t); }        // OK

char buf[bytesize(0)];          // OK -- not C99 VLA


// function template 2
template<typename _Tp>
  constexpr _Tp
  square(_Tp x) { return x; }

// Explicit specialization
template<>
  constexpr unsigned long
  square(unsigned long x) { return x * x; }

// Explicit instantiation
template int square(int);

class A { };
template A square(A);

template long square(long);