rust/tests/ui/single-use-lifetime/one-use-in-struct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
562 B
Rust
Raw Normal View History

2018-05-04 06:43:28 +08:00
// Test that we do not warn for named lifetimes in structs,
// even when they are only used once (since to not use a named
// lifetime is illegal!)
//
//@ check-pass
2018-05-04 06:43:28 +08:00
2022-05-11 03:15:30 +08:00
// Use forbid to verify that `automatically_derived` is handled correctly.
#![forbid(single_use_lifetimes)]
2018-05-04 06:43:28 +08:00
#![allow(dead_code)]
#![allow(unused_variables)]
struct Foo<'f> {
data: &'f u32,
}
2018-05-04 06:43:28 +08:00
enum Bar<'f> {
Data(&'f u32),
}
trait Baz<'f> {}
2018-05-04 06:43:28 +08:00
// `Derive`d impls shouldn't trigger a warning, either (Issue #53738).
#[derive(Debug)]
struct Quux<'a> {
priors: &'a u32,
}
fn main() {}