rust/tests/ui/regions/regions-free-region-outlives-static-outlives-free-region.rs
2024-02-16 20:02:50 +00:00

20 lines
288 B
Rust

//@ run-pass
#![allow(dead_code)]
// Test that we recognize that if you have
//
// 'a : 'static
//
// then
//
// 'a : 'b
#![warn(unused_lifetimes)]
fn test<'a,'b>(x: &'a i32) -> &'b i32
where 'a: 'static //~ WARN unnecessary lifetime parameter `'a`
{
x
}
fn main() { }