summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/drop_bounds.rs
blob: 6d6a9dc0783993f4f2e63520c78a23eb5c0f3331 (plain)
1
2
3
4
5
6
7
8
#![allow(unused)]
fn foo<T: Drop>() {}
fn bar<T>()
where
    T: Drop,
{
}
fn main() {}