aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/sizeof5.C
blob: 4096fed5329ccca978cb1dd2c2800be509e23e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/9907
// Origin: nes@lrde.epita.fr
// sizeof(foo()) was not considered constant.


template <unsigned n> struct bar {};

int foo();

template <class T>
void baz()
{
  bar<sizeof(foo())> b;
}