summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/multiple-lifetimes/multiple-lifetimes.rs
blob: 5407fb6dd28040e099e56116c80fb4bd91b498a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test that multiple lifetimes are allowed in impl trait types.
// build-pass (FIXME(62277): could be check-pass?)

trait X<'x>: Sized {}

impl<U> X<'_> for U {}

fn multiple_lifeteimes<'a, 'b, T: 'static>(x: &'a mut &'b T) -> impl X<'b> + 'a {
    x
}

fn main() {}