summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-50716.rs
blob: c2fc345fa2ba2e6e13ff41d509055b15fcc4613f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Regression test for the issue #50716: NLL ignores lifetimes bounds
// derived from `Sized` requirements

trait A {
    type X: ?Sized;
}

fn foo<'a, T: 'static>(s: Box<<&'a T as A>::X>)
where
    for<'b> &'b T: A,
    <&'static T as A>::X: Sized
{
    let _x = *s; //~ ERROR
}

fn main() {}