rust-clippy/tests/ui/crashes/needless_pass_by_value-w-late-bound.fixed

10 lines
164 B
Rust
Raw Normal View History

2023-07-27 11:40:22 +00:00
// https://github.com/rust-lang/rust/issues/107147
#![warn(clippy::needless_pass_by_value)]
struct Foo<'a>(&'a [(); 100]);
fn test(x: &Foo<'_>) {}
fn main() {}