repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
t21.C
blob
e91e56786012b1f175e0336b0f4f4c86615bc5b2
1
// { dg-do assemble }
2
3
template <class X> class A { public: int a; X x; };
4
template <class X> X f (A<X> a) { return a.x; }
5
6
extern A<double> a_dbl;
7
8
double fred () { return f (a_dbl); }