mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 11:17:26 +03:00
42c5d9a455
Gate `ConstParamTy_` trait behind `const_param_ty_trait` feature Initially even when user wasn't using unsized const params, the only way to implement/name `ConstParamTy_` was to use `#![feature(unsized_const_params]`, now its gated under `const_param_ty_trait` feature, implied by `unsized_const_params`. I've also changed use of `unsized_const_params` in tests which were using it only to implement `ConstParamTy_` without using unsized r? BoxyUwU