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
/
memclass13.C
blob
39a3d97b8069735ca020ce6091016480cc302893
1
// { dg-do assemble }
2
3
template <class X, class Y>
4
struct Inner;
5
6
template <class T>
7
struct S
8
{
9
template <class U>
10
struct Inner
11
{
12
};
13
};
14
15
16
S<double>::Inner<int> si;