summaryrefslogtreecommitdiffstats
path: root/src/test/ui/trait-bounds/issue-95640.rs
blob: e4e998b5d0bb8a86f4bdf82516e0174221e6d74d (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
// build-pass
// compile-flags:-Zmir-opt-level=3

struct D;

trait Tr {
    type It;
    fn foo(self) -> Option<Self::It>;
}

impl<'a> Tr for &'a D {
    type It = ();
    fn foo(self) -> Option<()> {
        None
    }
}

fn run<F>(f: F)
where
    for<'a> &'a D: Tr,
    F: Fn(<&D as Tr>::It),
{
    let d = &D;
    while let Some(i) = d.foo() {
        f(i);
    }
}

fn main() {
    run(|_| {});
}