rust-clippy/tests/ui/crashes/ice-10645.rs
2023-04-23 15:11:31 +02:00

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() {}