https://issues.dlang.org/show_bug.cgi?id=5904
Vladimir Panteleev <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dlang-bugzilla@thecybershad | |ow.net --- Comment #1 from Vladimir Panteleev <[email protected]> --- Test case: ///////////// test.d ///////////// import std.json; void main() { string s = `"\uD834\uDD1E"`; auto j = parseJSON(s); assert(j.str == "\U0001D11E"); } ////////////////////////////////// --
