mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
67 lines
1.6 KiB
Rust
67 lines
1.6 KiB
Rust
// Regression test for issue #83538. The problem here is that we have
|
|
// two cycles:
|
|
//
|
|
// * `Ty` embeds `Box<Ty>` indirectly, which depends on `Global: 'static`, which is OkModuloRegions.
|
|
// * But `Ty` also references `First`, which has a cycle on itself. That should just be `Ok`.
|
|
//
|
|
// But our caching mechanism was blending both cycles and giving the incorrect result.
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![allow(bad_style)]
|
|
|
|
struct First {
|
|
b: Vec<First>,
|
|
}
|
|
|
|
pub struct Second {
|
|
d: Vec<First>,
|
|
}
|
|
|
|
struct Third<'a, f> {
|
|
g: Vec<(f, &'a f)>,
|
|
}
|
|
|
|
enum Ty {
|
|
j(Fourth, Fifth, Sixth),
|
|
}
|
|
|
|
struct Fourth {
|
|
o: Vec<Ty>,
|
|
}
|
|
|
|
struct Fifth {
|
|
bounds: First,
|
|
}
|
|
|
|
struct Sixth {
|
|
p: Box<Ty>,
|
|
}
|
|
|
|
#[rustc_evaluate_where_clauses]
|
|
fn forward<'a>()
|
|
where
|
|
Vec<First>: Unpin,
|
|
Third<'a, Ty>: Unpin,
|
|
{
|
|
}
|
|
|
|
#[rustc_evaluate_where_clauses]
|
|
fn reverse<'a>()
|
|
where
|
|
Third<'a, Ty>: Unpin,
|
|
Vec<First>: Unpin,
|
|
{
|
|
}
|
|
|
|
fn main() {
|
|
// Key is that Vec<First> is "ok" and Third<'_, Ty> is "ok modulo regions":
|
|
|
|
forward();
|
|
//~^ ERROR evaluate(Binder(TraitPredicate(<std::vec::Vec<First> as std::marker::Unpin>, polarity:Positive), [])) = Ok(EvaluatedToOk)
|
|
//~| ERROR evaluate(Binder(TraitPredicate(<Third<'_, Ty> as std::marker::Unpin>, polarity:Positive), [])) = Ok(EvaluatedToOkModuloRegions)
|
|
|
|
reverse();
|
|
//~^ ERROR evaluate(Binder(TraitPredicate(<std::vec::Vec<First> as std::marker::Unpin>, polarity:Positive), [])) = Ok(EvaluatedToOk)
|
|
//~| ERROR evaluate(Binder(TraitPredicate(<Third<'_, Ty> as std::marker::Unpin>, polarity:Positive), [])) = Ok(EvaluatedToOkModuloRegions)
|
|
}
|