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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
using19.C
blob
dc89f92ef0e8b97e34143b14bebf4fe9ab129570
1
// PR c++/23211
2
// { dg-do compile }
3
4
struct A { int x; };
5
6
template <class T>
7
struct B: A
8
{
9
using T::x;
10
};
11
12
B<A> b;