summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui/crashes/ice-5207.rs
blob: 893c15f5d731c54f999dda846de8413e384f6ad1 (plain)
1
2
3
4
5
6
7
8
// compile-flags: --cap-lints=warn
// ^ for https://github.com/rust-lang/rust-clippy/issues/10645

// Regression test for https://github.com/rust-lang/rust-clippy/issues/5207
#![warn(clippy::future_not_send)]
pub async fn bar<'a, T: 'a>(_: T) {}

fn main() {}