]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test20367.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test20367.d
1 // https://issues.dlang.org/show_bug.cgi?id=20367
2
3 struct A
4 {
5 int x;
6 this(ref return scope A rhs) {}
7 @disable this(this) {}
8 }
9
10 void main()
11 {
12 A a;
13 A b = a; // copy constructor gets called
14 }