]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/drop_bounds.rs
Rollup merge of #72607 - Amanieu:fix-72570, r=oli-obk
[rust.git] / src / tools / clippy / tests / ui / drop_bounds.rs
1 #![allow(unused)]
2 fn foo<T: Drop>() {}
3 fn bar<T>()
4 where
5     T: Drop,
6 {
7 }
8 fn main() {}