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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
vt-34961.C
blob
11315ca14e97a3bf72e7644d92ab0417082415d8
1
// { dg-do compile { target c++11 } }
2
template<typename... T> struct A
3
{
4
static const int i __attribute__((aligned(__alignof(T)))) = 0; // { dg-error "not expanded|T" }
5
};
6
7
A<int> a;