Bug in Rdmd?

Jonathan Marler via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Mon Jun 13 18:05:46 PDT 2016


This code doesn't seem to work with rdmd.  Is this a bug?

   import std.stdio : byLine;
   int main(string[] args)
   {
     foreach(line; stdin.byLine) {
     }
     return 0;
   }

Compiler Output:
   Error: module std.stdio import 'byLine' not found


More information about the Digitalmars-d-learn mailing list