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++.brendan
/
template16.C
blob
d62f6bede764c286526cb8e7f5a96791aeb3774f
1
// { dg-do assemble }
2
// GROUPS passed templates
3
template<class T> class TList {
4
typedef void (T::*TVOIDFUNT)();
5
typedef T* (T::*TTPFUNT)(T*);
6
};
7
8
class A;
9
class B : TList<A> { };
10