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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
alignof2.C
blob
f9898980d60dae21d7ec6df0fc5916eac033519e
1
// PR c++/55337
2
// { dg-do compile }
3
4
template <int> struct A;
5
template <typename T> struct B
6
{
7
static A <__alignof__ (T)> b;
8
};
9
template <typename T> A<__alignof__ (T)> B<T>::b;