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-47.C
blob
71611db42ccd2079096b63ecb4dd1e8f2bf15251
1
// PR c++/65333
2
// { dg-do compile { target c++11 } }
3
4
template <typename T, T... Values> struct A
5
{
6
using type = int;
7
template <type... Suffix> using array = A<type, Values..., Suffix...>;
8
void
9
m_fn1 ()
10
{
11
array<>::data;
12
}
13
};