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
/
dependent-name12.C
blob
7ee94e7457d91593eb324a7af33ffcf46cb3921e
1
// PR c++/94057 - template keyword in a typename-specifier.
2
3
template <bool> struct A;
4
template <typename, typename> struct B;
5
template <typename T, typename U, typename V> struct B<T U::*, V> {
6
typename A<V::x>::type::type t;
7
};