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
/
builtin1.C
blob
a5b7271cb73de8a52e83b3877457bef93327a0ad
1
// PR c++/26559
2
3
template<bool> struct cond;
4
5
template<int> struct S {
6
void f(int i) {
7
cond<__builtin_constant_p(i)>();
8
}
9
};
10
11
S<1> s;