On Wednesday, 13 May 2015 at 20:09:44 UTC, wobbles wrote:
On windows, core.thread.Sleep (big 'S')On linux core.thread.sleep (little 'S')I'm trying to import as little symbols as possible, so was importing specific items likeimport core.thread : Sleep; but it fails when I compile on linux, so I need to do a version(Windows) import core.thread : Sleep; version(Posix) import core.thread : sleep; Seems like a bug?
No, you should be calling Thread.sleep (capital T) instead.
