Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
align.C
blob: a5269515c8db33ebad08fc5eeb27ed111cecb69a [
file
] [
log
] [
blame
]
// { dg-do assemble }
#include
<string.h>
class
bar
{
public
:
bar
()
{
rw
=
0
;
}
static
const
bar baz
;
private
:
unsigned
char
rw
;
};
char
buf
[
4096
];
void
foo
(
char
*
uc
)
{
memcpy
(
buf
,&
bar
::
baz
,
sizeof
(
bar
));
}