-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Update RELEASES.md for 1.50.0 #80812
New issue
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
Conversation
r=me with commits squashed. Thanks! |
a9ae03f
to
39e24f7
Compare
@Mark-Simulacrum Done. |
@bors r+ rollup |
📌 Commit 39e24f7 has been approved by |
🌲 The tree is currently closed for pull requests below priority 100. This pull request will be tested once the tree is reopened. |
|
||
Language | ||
----------------------- | ||
- [You can now use `const` values for `x` in `[x; N]` array expressions.][79270] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that "const
values" is not exactly right, depending on interpretation. [Vec::<i32>::new(); 10]
is not accepted. It only works for actual constants, not values/expressions that are (or can be) const: e.g. [EMPTY; 10]
with const EMPTY: Vec<i32> = Vec::new();
.
Rendered
r? @Mark-Simulacrum
cc @rust-lang/release