]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/drop_bounds.rs
Rollup merge of #71843 - sfackler:cas-loop-cleanup, r=dtolnay
[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() {}