mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
191 B
D
13 lines
191 B
D
// REQUIRED_ARGS: -O -m64
|
|
// PERMUTE_ARGS:
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=16225
|
|
|
|
struct C
|
|
{
|
|
hash_t foo( )
|
|
{
|
|
int y;
|
|
return ((cast(ubyte*)&y)[1]);
|
|
}
|
|
}
|