blob: 6b51b2b902a4f5a5ce0c1c42b9703f8ab66335df [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail9290.d(15): Error: slice `s1[]` is not mutable, struct `S` has immutable members
fail_compilation/fail9290.d(16): Error: array `s1` is not mutable, struct `S` has immutable members
---
*/
struct S { immutable int i; }
void main()
{
S[1] s1 = S(1);
S[1] s2 = S(2);
s1 = S(3);
s1 = s2;
}