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
type union vscode preview display out of order digits/numbers
No response
type digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
Why is 0 between 2 and 3?
Preview says type digit = "0" | "1" | "2" | "3" ...
type digit = "0" | "1" | "2" | "3" ...
The text was updated successfully, but these errors were encountered:
You forgot to fill out the issue template.
Duplicate of #17944. The order of types in a union is not guaranteed.
Sorry, something went wrong.
no i didn't? and okay will close as duplicate. still weird that only 0 is out of place though.
No branches or pull requests
🔎 Search Terms
type union vscode preview display out of order digits/numbers
🕗 Version & Regression Information
⏯ Playground Link
No response
💻 Code
🙁 Actual behavior
Why is 0 between 2 and 3?
🙂 Expected behavior
Preview says
type digit = "0" | "1" | "2" | "3" ...
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: