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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-65.C
blob
e320f3eedd0e949a38d4eeecebb570e573138018
1
// PR c++/86171
2
// { dg-do compile { target c++11 } }
3
4
template <class> struct A;
5
template <class T> using B = typename A<T>::X;
6
template <class T> struct A {
7
typedef int X;
8
typedef B<T> U;
9
};
10
B<short> b;