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

14 lines
242 B
D

// https://issues.dlang.org/show_bug.cgi?id=19415
struct S
{
int x;
S foo() return { return S(x); }
this(this) @disable;
}
S bar()
{
S s;
return s; // Error: struct `S` is not copyable because it is annotated with @disable
}