about summary refs log tree commit diff
path: root/tests/ui/traits/object/exclusion.rs
blob: 1f3432aecb87576fc05ba6303f1d9e9ffc82d25f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@ run-pass
trait Future: 'static {
    // The requirement for Self: Sized must prevent instantiation of
    // Future::forget in vtables, otherwise there's an infinite type
    // recursion through <Map<...> as Future>::forget.
    fn forget(self) where Self: Sized {
        Box::new(Map(self)) as Box<dyn Future>;
    }
}

struct Map<A>(#[allow(dead_code)] A);
impl<A: Future> Future for Map<A> {}

pub struct Promise;
impl Future for Promise {}

fn main() {
    Promise.forget();
}