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
/
template11.C
blob
e651a3bd076ca766b8b54da001d5c6b18ae30487
1
// PR c++/9488
2
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
3
// { dg-do compile }
4
5
struct A
6
{
7
template <typename> void foo() {}
8
};
9
10
template <typename T> struct B
11
{
12
void bar() { A().foo<T>(); }
13
};
14
15
template struct B<int>;