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
* arm.c (FL_WBUF): Define.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
template6.C
blob
2cff7e5b41bcf1ea20f71c0dcb537f98181033fc
1
// { dg-do assemble }
2
// GROUPS passed templates
3
struct B {
4
};
5
6
struct X : B {
7
~X ();
8
};
9
10
struct Request {
11
X s;
12
};
13
14
template <class ET> class TC {
15
ET data;
16
};
17
18
struct TMem {
19
20
~TMem() {}
21
22
TC<Request> *req;
23
};
24
25
struct FIO {
26
27
void init ();
28
29
FIO () { init(); }
30
};