2019-11-03 18:00:00 -06:00
|
|
|
// check-pass
|
2018-12-18 14:27:22 -06:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
fn foo<T: 'static + Debug>(_: T) { }
|
|
|
|
|
|
|
|
fn bar<'a>() {
|
|
|
|
return;
|
|
|
|
|
2023-06-12 03:55:36 -05:00
|
|
|
foo::<Vec<_>>(Vec::<&'a u32>::new());
|
2018-12-18 14:27:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|