https://issues.dlang.org/show_bug.cgi?id=13930
--- Comment #6 from Dlang Bot ---
dlang/phobos pull request #7657 "Revert "Fix issue 13930, 19345 - Fix
`receiveOnly` for non-assignable types "" was merged into master:
- 756242350896019ffc7a7cbe05e838538a559f5a by Mathias LANG:
Revert "Fix issue
https://issues.dlang.org/show_bug.cgi?id=13930
Dlang Bot changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
ssue 13930 - std.concurrency can't send immutable AA to another thread
- Fix issue 19345 - std.concurrency does not work with structs of const value
type
https://github.com/dlang/phobos/pull/7655
--
https://issues.dlang.org/show_bug.cgi?id=13930
Tomoya Tanjo changed:
What|Removed |Added
CC||tta...@gmail.com
--- Comment #3 from Tomoya T
https://issues.dlang.org/show_bug.cgi?id=13930
JR changed:
What|Removed |Added
CC||zor...@gmail.com
--- Comment #2 from JR ---
Is there a
https://issues.dlang.org/show_bug.cgi?id=13930
Andrei Alexandrescu changed:
What|Removed |Added
Version|unspecified |D2
--
https://issues.dlang.org/show_bug.cgi?id=13930
--- Comment #1 from Martin Nowak ---
Receiving immutable AAs doesn't work either.
cat > bug.d << CODE
import std.concurrency;
void main()
{
auto aa = receiveOnly!(immutable string[string]);
}
CODE
dmd -c bug
DPL/dmd/src/../../phobos/std/concu
https://issues.dlang.org/show_bug.cgi?id=13930
Martin Nowak changed:
What|Removed |Added
Summary|std.concurrency can't |std.concurrency can't send