2020-03-06 05:13:55 -06:00
|
|
|
// Adapted from rust-lang/rust#58813
|
2019-03-04 06:55:32 -06:00
|
|
|
|
|
|
|
// revisions: rpass1 cfail2
|
|
|
|
|
|
|
|
#[cfg(rpass1)]
|
2020-12-03 17:10:55 -06:00
|
|
|
pub trait T2 {}
|
2019-03-04 06:55:32 -06:00
|
|
|
#[cfg(cfail2)]
|
2020-12-03 17:10:55 -06:00
|
|
|
pub trait T2: T1 {}
|
|
|
|
//[cfail2]~^ ERROR cycle detected when computing the super predicates of `T2`
|
2019-03-04 06:55:32 -06:00
|
|
|
|
2020-12-03 17:10:55 -06:00
|
|
|
pub trait T1: T2 {}
|
2019-03-04 06:55:32 -06:00
|
|
|
|
2020-12-03 17:10:55 -06:00
|
|
|
fn main() {}
|