Rollup merge of #127070 - Sky9x:unit-const-param-ty, r=BoxyUwU · model-checking/verify-rust-std@0a2d8e4 (original) (raw)

Original file line number Diff line number Diff line change
@@ -996,15 +996,12 @@ marker_impls! {
996 996 bool,
997 997 char,
998 998 str /* Technically requires `[u8]: ConstParamTy` */,
999 +(),
999 1000 {T: ConstParamTy, const N: usize} [T; N],
1000 1001 {T: ConstParamTy} [T],
1001 1002 {T: ?Sized + ConstParamTy} &T,
1002 1003 }
1003 1004
1004 -// FIXME(adt_const_params): Add to marker_impls call above once not in bootstrap
1005 -#[unstable(feature = "adt_const_params", issue = "95174")]
1006 -impl ConstParamTy for () {}
1007 -
1008 1005 /// A common trait implemented by all function pointers.
1009 1006 #[unstable(
1010 1007 feature = "fn_ptr_trait",