aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/cond3.C
blob: 788b3754a61e2f654149670b6716c31126752d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/13833

struct X { 
  template <typename T> 
  X & operator << (const T &t); 
  X & operator<< (int& (*p) (int&)); 
}; 
 
X x; 
 
template <int> void foo () { 
  x << (1 ? "ok" : "failed"); 
} 
 
template void foo<1>();