Closed
Description
This may be related to #4648 , but I don't know if it's the same issue.
rustfmt sorts imports, and braced groups within imports, in the following order:
use a;
use aA;
use aa;
use Aa;
use WoRD;
use Word;
use A;
use AA;
use WORD;
use brace_group_sort_test::{a, aA, aa, Aa, WoRD, Word, A, AA, WORD};
This isn't alphabetical, ASCIIbetical, or any other sort order that I can identify.
The style guide says to sort ascii-betically here, in both cases (top-level and within braced lists).