dmd/compiler/test/compilable/copyCtor2.d
2025-01-10 11:19:29 -08:00

14 lines
188 B
D

/* This used to not be allowed
* https://github.com/dlang/dmd/pull/20634
*/
struct A
{
this (ref shared A a) immutable {}
}
struct B
{
A a;
this(immutable B b) shared {}
}