rust/tests/ui/unused_lt.rs

74 lines
1.5 KiB
Rust
Raw Normal View History

2018-10-06 11:18:06 -05:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-12-09 16:26:16 -06:00
#![allow(
unused,
dead_code,
clippy::needless_lifetimes,
clippy::needless_pass_by_value,
clippy::trivially_copy_pass_by_ref
)]
2018-07-28 10:34:52 -05:00
#![warn(clippy::extra_unused_lifetimes)]
2018-12-09 16:26:16 -06:00
fn empty() {}
2018-12-09 16:26:16 -06:00
fn used_lt<'a>(x: &'a u8) {}
2018-12-09 16:26:16 -06:00
fn unused_lt<'a>(x: u8) {}
2017-02-08 07:58:07 -06:00
fn unused_lt_transitive<'a, 'b: 'a>(x: &'b u8) {
// 'a is useless here since it's not directly bound
}
fn lt_return<'a, 'b: 'a>(x: &'b u8) -> &'a u8 {
panic!()
}
fn lt_return_only<'a>() -> &'a u8 {
panic!()
}
2018-12-09 16:26:16 -06:00
fn unused_lt_blergh<'a>(x: Option<Box<Send + 'a>>) {}
trait Foo<'a> {
fn x(&self, a: &'a u8);
}
impl<'a> Foo<'a> for u8 {
2018-12-09 16:26:16 -06:00
fn x(&self, a: &'a u8) {}
}
struct Bar;
impl Bar {
2017-02-08 07:58:07 -06:00
fn x<'a>(&self) {}
}
// test for #489 (used lifetimes in bounds)
2018-12-09 16:26:16 -06:00
pub fn parse<'a, I: Iterator<Item = &'a str>>(_it: &mut I) {
unimplemented!()
}
2018-12-09 16:26:16 -06:00
pub fn parse2<'a, I>(_it: &mut I)
where
I: Iterator<Item = &'a str>,
{
unimplemented!()
}
2018-12-09 16:26:16 -06:00
struct X {
x: u32,
}
impl X {
fn self_ref_with_lifetime<'a>(&'a self) {}
fn explicit_self_with_lifetime<'a>(self: &'a Self) {}
}
2018-12-09 16:26:16 -06:00
fn main() {}