You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---struct S{const int i;void opOpAssign(string op : "+")(int) { }void opOpAssign(string op : "~")(int) { }}void main(){S s;s += ""; // Error: cannot modify struct s S with immutable memberss ~= ""; // Error: cannot modify struct s S with immutable members}---
The text was updated successfully, but these errors were encountered:
Denis Shelomovskii (@denis-sh) reported this on 2013-11-05T05:51:47Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=11443
Description
The text was updated successfully, but these errors were encountered: