http://d.puremagic.com/issues/show_bug.cgi?id=10081
Summary: Incorrect char array comparison
Product: D
Version: D2
Platform: All
OS/Version: All
Status: ASSIGNED
Keywords: wrong-code
Severity: major
Priority: P2
Component: druntime
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Denis Shelomovskij <[email protected]> 2013-05-14
13:37:32 MSD ---
---
auto a = "hello"c;
assert(a < "я"); // Fails
char[1] arr1 = [0], arr2 = [0xFF];
assert(arr1 < arr2); // Fails
---
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------