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
/
crash30.C
blob
145b07673e9d73c009e5ac313f2ef9a4efd3e732
1
// PR c++/19034
2
3
template< bool C > struct B
4
{
5
};
6
7
template<typename S> int foo();
8
template<typename S> int foo1();
9
10
template<typename T> struct bar : public B <(sizeof(foo<T>()) == 1)>
11
{
12
};
13
14
template<typename T> struct bar1 : public B <(sizeof(foo1<T>()) == 1)>
15
{
16
};