digitalmars.D.learn - bug or feature? shared objects and tuples
- Jack Applegame (15/15) Aug 26 2013 It is impossible to pack a structure with shared object into
- Andrej Mitrovic (4/6) Aug 26 2013 Bug. Please file it to bugzilla:
- Jack Applegame (2/5) Aug 26 2013 http://d.puremagic.com/issues/show_bug.cgi?id=10907
It is impossible to pack a structure with shared object into
tuple.
```
import std.concurrency;
import std.typecons;
class Foo {}
struct A {
shared Foo foo;
}
void main() {
auto a = tuple(new shared Foo); // ОК
auto b = tuple(A()); // Error: static assert "unable
to format shared objects"
}
```
Aug 26 2013
On 8/27/13, Jack Applegame <japplegame gmail.com> wrote:It is impossible to pack a structure with shared object into tuple.Bug. Please file it to bugzilla: http://d.puremagic.com/issues/enter_bug.cgi?product=D Thanks!
Aug 26 2013
On Monday, 26 August 2013 at 23:04:24 UTC, Andrej Mitrovic wrote:Bug. Please file it to bugzilla: http://d.puremagic.com/issues/enter_bug.cgi?product=D Thanks!http://d.puremagic.com/issues/show_bug.cgi?id=10907
Aug 26 2013








"Jack Applegame" <japplegame gmail.com>