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

19 lines
273 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail19098.d(18): Error: cannot modify struct instance `a` of type `A` because it contains `const` or `immutable` members
---
*/
struct A
{
const int a;
this(int) {}
}
void main()
{
A a = A(2);
A b = A(3);
a = b;
}