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
/
memtemp76.C
blob
e11fe02b349693ca35d5f7fb8bc56d998fde4b7a
1
// { dg-do assemble }
2
3
class base
4
{
5
public:
6
virtual void method()=0;
7
};
8
9
class der: public base
10
{
11
public:
12
template<class C>
13
void method()
14
{
15
C foo;
16
}
17
};