~~ module.sortExportDeclarations: caseSensitive ~~
== should sort the export declarations ==
export {} from "a1.ts";
export {} from "A2.ts";

[expect]
export {} from "A2.ts";
export {} from "a1.ts";
