We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input 1:
using A = string; using B = string; using C = string; using D = string;
Output 1:
using D = string; using C = string; using B = string; using A = string;
Input 2:
Output 2:
Input 3:
using C = string; using D = string; using B = string; using A = string;
Output 3:
using A = string; using B = string; using D = string; using C = string;
Expected behavior: All inputs should have the same output (output 2 in the examples above).
The text was updated successfully, but these errors were encountered:
making sure alias's sort properly
e605d54
closes #1168
Sort aliases (#1173)
0b239f6
* making sure alias's sort properly closes #1168 * assume csharpier-repos is next to csharpier * self code review
Successfully merging a pull request may close this issue.
Input 1:
Output 1:
Input 2:
Output 2:
Input 3:
Output 3:
Expected behavior:
All inputs should have the same output (output 2 in the examples above).
The text was updated successfully, but these errors were encountered: