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-26.C
blob
dd4cc0286a11bfc35d2f4e86984d00475e409e6a
1
// Origin: PR c++/54466
2
// { dg-do compile { target c++11 } }
3
4
template<typename T>
5
struct X { };
6
7
template<typename T>
8
using Y = const X<T>;
9
10
using Z = Y<int>;