Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
attrib38.C
blob: be3c7f2ba1ad7e99751c974dae09d3780c7ebe53 [
file
] [
log
] [
blame
]
// PR c++/36625
template
<
int
N
>
struct
A
{
struct
S
{
short
f
[
3
];
}
__attribute__
((
aligned
(
N
)));
};
int
main
()
{
A
<
4
>::
S s
;
}