Allow #[unstable] impl for fn() -> UnstableType.

(But not fn() -> !, which is stable.)
This commit is contained in:
Mara Bos 2022-10-19 13:33:45 +02:00
parent 5420fa3881
commit c4f829b2e5
2 changed files with 22 additions and 7 deletions

View File

@ -888,14 +888,26 @@ impl<'tcx> Visitor<'tcx> for CheckTraitImplStable<'tcx> {
}
fn visit_ty(&mut self, t: &'tcx Ty<'tcx>) {
match t.kind {
TyKind::Never => self.fully_stable = false,
TyKind::BareFn(f) => {
if rustc_target::spec::abi::is_stable(f.abi.name()).is_err() {
self.fully_stable = false;
}
if let TyKind::Never = t.kind {
self.fully_stable = false;
}
if let TyKind::BareFn(f) = t.kind {
if rustc_target::spec::abi::is_stable(f.abi.name()).is_err() {
self.fully_stable = false;
}
}
intravisit::walk_ty(self, t)
}
fn visit_fn_decl(&mut self, fd: &'tcx hir::FnDecl<'tcx>) {
for ty in fd.inputs {
self.visit_ty(ty)
}
if let hir::FnRetTy::Return(output_ty) = fd.output {
match output_ty.kind {
TyKind::Never => {} // `-> !` is stable
_ => self.visit_ty(output_ty),
}
_ => intravisit::walk_ty(self, t),
}
}
}

View File

@ -37,4 +37,7 @@ impl StableTrait for StableType {}
//~^ ERROR an `#[unstable]` annotation here has no effect [ineffective_unstable_trait_impl]
impl StableTrait for fn() -> ! {}
#[unstable(feature = "l", issue = "none")]
impl StableTrait for fn() -> UnstableType {}
fn main() {}