mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 06:00:13 +03:00
14 lines
184 B
D
14 lines
184 B
D
/*
|
|
currently fails with extra safety checks
|
|
PERMUTE_FIXME_ARGS: -dip1000
|
|
*/
|
|
|
|
struct Cache
|
|
{
|
|
ubyte[1] v;
|
|
|
|
ubyte[] set(ubyte[1] v)
|
|
{
|
|
return this.v[] = v[];
|
|
}
|
|
}
|