D issues are now tracked on GitHub. This Bugzilla instance remains as a read-only archive.
Issue 15423 - [REG v2.067.1] File.byLineCopy.joiner.parseJSON
Summary: [REG v2.067.1] File.byLineCopy.joiner.parseJSON
Status: RESOLVED INVALID
Alias: None
Product: D
Classification: Unclassified
Component: phobos (show other issues)
Version: D2
Hardware: All All
: P1 regression
Assignee: No Owner
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-12-08 18:50 UTC by Jack Stouffer
Modified: 2015-12-19 18:57 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Jack Stouffer 2015-12-08 18:50:11 UTC
The following code works in 2.067.1 and no longer works in 2.068.0

----------
import std.stdio;
import std.json;
import std.algorithm;

void main() {
    auto ls = File("test.json","r").byLineCopy().joiner.parseJSON();
}
----------

Unfortunately, digger was not able to find out where this was introduced for some reason.
Comment 1 Vladimir Panteleev 2015-12-08 20:15:36 UTC
Introduced in https://github.com/D-Programming-Language/phobos/pull/3348
Comment 3 Jack Stouffer 2015-12-19 18:57:17 UTC
It seems this bug is not present in master, closing.