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-9.C
blob
5794617d5150f835d0e3e4cb4bc5e494a3932de6
1
// { dg-do compile { target c++11 } }
2
3
template <class T>
4
struct A {
5
using Result = T;
6
};
7
template <class A> using Arg = typename A::Result;
8
Arg<A<int>> b;
9