repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alignas15.C
blob
7244dce5bc1b4c60f5d5cd267e55d232bb16e8e2
1
// PR c++/84540
2
// { dg-do compile { target c++11 } }
3
4
template<typename... T> struct A { enum alignas(alignof(T)...) E {}; };
5
6
A<> a;