March 15, 2023
https://issues.dlang.org/show_bug.cgi?id=23782

          Issue ID: 23782
           Summary: asNormalizedPath equality is broken
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: phobos
          Assignee: nobody@puremagic.com
          Reporter: john.loughran.colvin@gmail.com

assert(asNormalizedPath("hi/").text == asNormalizedPath("hi").text);
    assert(buildNormalizedPath("hi/") == buildNormalizedPath("hi"));
    //assert(asNormalizedPath("hi/") == asNormalizedPath("hi")); fails

--