Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
// Test that we DO warn for a lifetime on an impl used only in `&self`
|
||||
// in a trait method.
|
||||
|
||||
#![deny(single_use_lifetimes)]
|
||||
#![allow(dead_code)]
|
||||
#![allow(unused_variables)]
|
||||
|
||||
struct Foo<'f> {
|
||||
data: &'f u32
|
||||
}
|
||||
|
||||
impl<'f> Iterator for Foo<'f> {
|
||||
type Item = &'f u32;
|
||||
|
||||
fn next<'g>(&'g mut self) -> Option<Self::Item> { //~ ERROR `'g` only used once
|
||||
//~^ HELP elide the single-use lifetime
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
trait Bar<'a> {
|
||||
// But we should not warn here.
|
||||
fn bar(x: Foo<'a>);
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue