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++.jason
/
tempover.C
blob
5f56e4e88f11d4bef8e9647f393f6ee306efb0c4
1
// { dg-do assemble }
2
// GROUPS passed templates overloading
3
#define TEMPL template <class T>
4
5
class B {};
6
7
TEMPL class A : virtual public B {
8
public:
9
A(int);
10
};
11
12
TEMPL A<T>::A(int){}
13
14
A<double> a(1);