-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Migrate UnsizedConstParamTy
to unstable impl of ConstParamTy_
#145095
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
base: master
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? `@BoxyUwU`
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? ``@BoxyUwU``
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? ```@BoxyUwU```
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? ````@BoxyUwU````
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? `````@BoxyUwU`````
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? ``````@BoxyUwU``````
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang#145095 r? ```````@BoxyUwU```````
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang/rust#145095 r? ```````@BoxyUwU```````
Support using #[unstable_feature_bound] on trait This is needed to unblock rust-lang/rust#145095 r? ```````@BoxyUwU```````
a4bd0a8
to
262cf11
Compare
Ok(()) | ||
}) | ||
} else if tcx.features().adt_const_params() { | ||
if tcx.features().adt_const_params() || tcx.features().unsized_const_params() { |
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.
we should make unsized_const_params
no longer be a lang feature. you can do this by removing its entry from unstable.rs
Currently all tests in |
☔ The latest upstream changes (presumably #145773) made this pull request unmergeable. Please resolve the merge conflicts. |
Now that we have
#[unstable_feature_bound]
, we can removeUnsizedConstParamTy
that was meant to be an unstable impl of stable type andConstParamTy_
trait.r? @BoxyUwU