2023-02-25 18:08:29 -06:00
|
|
|
// https://github.com/rust-lang/rust/issues/107147
|
|
|
|
|
|
|
|
#![warn(clippy::needless_pass_by_value)]
|
|
|
|
|
|
|
|
struct Foo<'a>(&'a [(); 100]);
|
|
|
|
|
|
|
|
fn test(x: Foo<'_>) {}
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: this argument is passed by value, but not consumed in the function body
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
fn main() {}
|