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
libstdc++: Fix up 117406.cc test [PR117406]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
ptrmem3.C
blob
039d5dc65cb4c84169101b9b24ca37a05e3ac782
1
// { dg-do assemble }
2
3
template <class T>
4
struct S : public S<T*> {};
5
template <>
6
struct S<int**> {};
7
8
void g()
9
{
10
int S<int*>::*p;
11
int S<int>::*q = p;
12
}