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
/
variadic173.C
blob
a0ca89b764f12ef2862bad2d18edd01fe0fc4c09
1
// PR c++/84770
2
// { dg-do compile { target c++11 } }
3
4
typedef int T;
5
6
template<T&...> struct A {};
7
8
int i;
9
10
A<i> a;