2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2015-03-04 00:27:50 +00:00
|
|
|
// Test stack overflow triggered by evaluating the implications. To be
|
|
|
|
// WF, the type `Receipt<Complete>` would require that `<Complete as
|
|
|
|
// Async>::Cancel` be WF. This normalizes to `Receipt<Complete>`
|
|
|
|
// again, leading to an infinite cycle. Issue #23003.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-04 00:27:50 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
|
|
|
|
trait Async {
|
|
|
|
type Cancel;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Receipt<A:Async> {
|
|
|
|
marker: PhantomData<A>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Complete {
|
|
|
|
core: Option<()>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Async for Complete {
|
|
|
|
type Cancel = Receipt<Complete>;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo(r: Receipt<Complete>) { }
|
|
|
|
|
|
|
|
fn main() { }
|