]> git.lizzy.rs Git - rust.git/blob - tests/ui/drop_bounds.rs
iterate List by value
[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() {}