aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit68.C
blob: bc47c6c8f114d598836893845e56b47973901758 (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
// Build don't link:

template <bool B>
struct S
{
  static void g();
};

template <bool B>
void g();

template<unsigned Length>
void f()
{
  const bool b = true;
  g<b>();
  const bool b1 = (Length == 2);
  S<b1>::g();
}

void h()
{
  f<3>();
}