]> git.lizzy.rs Git - rust.git/blob - tests/ui/drop_bounds.rs
Auto merge of #5522 - CrazyRoka:match_vec_item, r=phansch
[rust.git] / 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() {}