dmd/test/compilable/scope.d
2016-12-31 11:05:09 -08:00

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