mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
7 lines
178 B
Rust
7 lines
178 B
Rust
//@compile-flags: --cap-lints=warn
|
|
// https://github.com/rust-lang/rust-clippy/issues/10645
|
|
|
|
#![warn(clippy::future_not_send)]
|
|
pub async fn bar<'a, T: 'a>(_: T) {}
|
|
|
|
fn main() {}
|