summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-96223.rs
blob: 85667bb849bd46cb6d07ec80a34056f4dcb4f392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Previously ICEd because we didn't properly track binders in suggestions
// check-fail

pub trait Foo<'de>: Sized {}

pub trait Bar<'a>: 'static {
    type Inner: 'a;
}

pub trait Fubar {
    type Bar: for<'a> Bar<'a>;
}

pub struct Baz<T>(pub T);

impl<'de, T> Foo<'de> for Baz<T> where T: Foo<'de> {}

struct Empty;

impl<M> Dummy<M> for Empty
where
    M: Fubar,
    for<'de> Baz<<M::Bar as Bar<'de>>::Inner>: Foo<'de>,
{
}

pub trait Dummy<M>
where
    M: Fubar,
{
}

pub struct EmptyBis<'a>(&'a [u8]);

impl<'a> Bar<'a> for EmptyBis<'static> {
    type Inner = EmptyBis<'a>;
}

pub struct EmptyMarker;

impl Fubar for EmptyMarker {
    type Bar = EmptyBis<'static>;
}

fn icey_bounds<D: Dummy<EmptyMarker>>(p: &D) {}

fn trigger_ice() {
    let p = Empty;
    icey_bounds(&p); //~ERROR the trait bound
}

fn main() {}