repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash76.C
blob
851cdd8c436d31c6be2d18a6b03fde4ee65a03a9
1
// PR c++/34486
2
3
template<typename> struct A
4
{
5
typedef A* X;
6
};
7
8
template<typename T> struct B
9
{
10
using A<T>::X::Y; // { dg-error "not a base type" }
11
};
12
13
B<int> b;