repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
inherit5.C
blob
cd22f5b10c9c38f354cbe8008e3156bdda3b996b
1
struct A
2
{
3
template<int> void foo();
4
};
5
6
template<int N> struct B : A
7
{
8
B() { foo<N>(); }
9
};
10
11
B<0> b;