repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
cond3.C
blob
788b3754a61e2f654149670b6716c31126752d91
1
// PR c++/13833
2
3
struct X {
4
template <typename T>
5
X & operator << (const T &t);
6
X & operator<< (int& (*p) (int&));
7
};
8
9
X x;
10
11
template <int> void foo () {
12
x << (1 ? "ok" : "failed");
13
}
14
15
template void foo<1>();