repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
pr17410.C
blob
8be958863ed4e50194e0efe2db9ecf83067dce8d
1
// PR c++/17410
2
3
template <class>
4
struct Outer {
5
template <class> struct Inner {};
6
};
7
8
template <class T>
9
struct A;
10
11
template <template <class> class Q, class P>
12
struct A <Q<P> > {};
13
14
template <class T> struct UNRELATED;
15
template <class T> struct UNRELATED<Outer<void>::Inner<T*> >;
16
17
template struct A<Outer<void>::Inner<int*> >;