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
/
parse
/
non-dependent3.C
blob
9dfb99636a88c43441721be2ace3b3c745d4d107
1
// PR c++/14586
2
3
enum E { e };
4
5
E & operator |= (E &f1, const E &f2);
6
7
E operator | (const E &f1, const E &f2) {
8
E result = f1;
9
result |= f2;
10
return result;
11
}
12
13
template <typename> void foo () {
14
const E flags = e | e;
15
}
16
17
template void foo<double> ();