dmd/compiler/test/compilable/test16225.d
2022-07-09 18:53:07 +02:00

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]);
}
}