import std.concurrency;
void main(string[] args) {
receiveOnly!bool();
}This simple program results in segmentation fault. I know i does not spawn a thread to receive anything from but is this the expected behavior?
/Jonas
import std.concurrency;
void main(string[] args) {
receiveOnly!bool();
}This simple program results in segmentation fault. I know i does not spawn a thread to receive anything from but is this the expected behavior?
/Jonas