]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test19145.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test19145.d
CommitLineData
0344b5b8
IB
1// https://issues.dlang.org/show_bug.cgi?id=19415
2
3struct S
4{
5 int x;
6 S foo() return { return S(x); }
7 this(this) @disable;
8}
9
10S bar()
11{
12 S s;
13 return s; // Error: struct `S` is not copyable because it is annotated with @disable
14}