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
/
t03.C
blob
7e64060e468da5191b7089001a4b2f342529f8d4
1
// { dg-do assemble }
2
3
template <class A> class B { public: A a; };
4
static B<int> b_int;
5
static B<char> b_char;
6
7
int foo () { return b_int.a + b_char.a; }