rust/tests/ui/crashes/ice-10645.rs

8 lines
178 B
Rust
Raw Normal View History

//@compile-flags: --cap-lints=warn
2023-04-23 08:11:31 -05:00
// https://github.com/rust-lang/rust-clippy/issues/10645
#![warn(clippy::future_not_send)]
pub async fn bar<'a, T: 'a>(_: T) {}
fn main() {}