summary refs log tree commit diff
path: root/src/test/ui/issues/issue-54943-3.rs
blob: e6c2611b683e1dd6d8483e1e78ba5a52f29fb424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// check-pass
// FIXME(#54943) This test targets the scenario where proving the WF requirements requires
// knowing the value of the `_` type present in the user type annotation - unfortunately, figuring
// out the value of that `_` requires type-checking the surrounding code, but that code is dead,
// so our NLL region checker doesn't have access to it. This test should actually fail to compile.

#![feature(nll)]
#![allow(warnings)]

use std::fmt::Debug;

fn foo<T: 'static + Debug>(_: T) { }

fn bar<'a>() {
    return;

    let _x = foo::<Vec<_>>(Vec::<&'a u32>::new());
}

fn main() {}