-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #37541 - nikomatsakis:issue-37291, r=brson
Use impl obligations as initial environment for specialization This corrects a small regression in specialization that crept in, I think as part of the refactoring to introduce arenas. I also made an experiment (in the last commit) to cleanup the code to be more aggressive about normalization. As the commit log notes, I am not 100% sure that this is correct, but it feels safer, and I think that at worst it yields *more* ICEs (as opposed to admitting faulty code). I'll schedule a crater run to check beyond the testbase. Fixes #37291. r? @aturon
- Loading branch information
Showing
3 changed files
with
97 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![crate_type = "lib"] | ||
|
||
use std::ops::Mul; | ||
|
||
pub trait A {} | ||
pub trait B { | ||
type AT: A; | ||
} | ||
pub trait C { | ||
type BT: B; | ||
} | ||
|
||
pub struct AV; | ||
impl A for AV {} | ||
|
||
pub struct BV; | ||
impl B for BV { | ||
type AT = AV; | ||
} | ||
|
||
pub struct CV; | ||
impl C for CV { | ||
type BT = BV; | ||
} | ||
|
||
pub struct WrapperB<T>(pub T); | ||
pub struct WrapperC<T>(pub T); | ||
|
||
impl<C1> Mul<WrapperB<<C1::BT as B>::AT>> for WrapperC<C1> | ||
where C1: C | ||
{ | ||
type Output = u8; | ||
fn mul(self, _: WrapperB<<C1::BT as B>::AT>) -> Self::Output { | ||
loop {} | ||
} | ||
} | ||
impl<C1> Mul<WrapperC<C1>> for WrapperC<C1> { | ||
type Output = u8; | ||
fn mul(self, _: WrapperC<C1>) -> Self::Output { | ||
loop {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// aux-build:lib.rs | ||
|
||
// Regression test for #37291. The problem was that the starting | ||
// environment for a specialization check was not including the | ||
// where-clauses from the impl when attempting to normalize the impl's | ||
// trait-ref, so things like `<C as Foo>::Item` could not resolve, | ||
// since the `C: Foo` trait bound was not included in the environment. | ||
|
||
extern crate lib; | ||
|
||
use lib::{CV, WrapperB, WrapperC}; | ||
|
||
fn main() { | ||
let a = WrapperC(CV); | ||
let b = WrapperC(CV); | ||
if false { | ||
let _ = a * b; | ||
} | ||
} |