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
/
using13.C
blob
3f86ede3770fd75fe384befb169b3fd1e7940007
1
//PR c++/28051
2
3
template<int> struct A {};
4
5
template<int N> struct B : A<N>
6
{
7
using A<N>::operator typename A<N>::X; // { dg-error "no type named" }
8
};
9
10
B<0> b;
11