mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
20 lines
288 B
Rust
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() { }
|