summary refs log tree commit diff
path: root/src/test/ui/impl-trait/multiple-lifetimes.rs
blob: 8346542135becfc93c61d5ac02c844f392f2f1e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test that multiple liftimes are allowed in impl trait types.
// compile-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() {}