8000 reserve `impl<T> From<!> for T` by arielb1 · Pull Request #62661 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

reserve impl<T> From<!> for T #62661

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

Merged
merged 13 commits into from
Sep 26, 2019
Prev Previous commit
Next Next commit
remove outdated fixme
  • Loading branch information
nikomatsakis authored and arielb1 committed Sep 24, 2019
commit b40a64da4fb1f2012bd925100b4cff2a38a72b30
1 change: 0 additions & 1 deletion src/librustc_traits/lowering/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ fn program_clauses_for_trait(tcx: TyCtxt<'_>, def_id: DefId) -> Clauses<'_> {
}

fn program_clauses_for_impl(tcx: TyCtxt<'tcx>, def_id: DefId) -> Clauses<'tcx> {
// FIXME: implement reservation impls.
if let ty::ImplPolarity::Negative = tcx.impl_polarity(def_id) {
return List::empty();
}
Expand Down
0