I'm on 64 bit linux (though with a self-built 32 bit DMD), and this testcase is failing for me:<div><div>import std.stdio;</div><div>import core.sys.posix.sys.select;</div><div><br></div><div>int main(string[] args) {</div>
<div>   fd_set fdset;</div><div>   FD_SET(3, &fdset);</div><div>   assert(FD_ISSET(3, &fdset));</div><div>   return 0;</div><div>}</div></div><div><br></div><div>The same program works perfectly with GDC. Is this a DMD bug, or am I just missing something?</div>