blob: 408e4027fd6ab93bb0cb3cdaaabfa01c14d709ca [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/immutable_ctor.d(18): Error: `immutable` copy constructor `immutable_ctor.S1.this` cannot construct a mutable object
---
*/
struct S1
{
this(ref const S1 s) immutable {
}
int i;
}
void main()
{
const(S1) s1;
S1 ms1 = s1;
}