rust/tests/ui/issues/issue-21160.rs

12 lines
146 B
Rust

struct Bar;
impl Bar {
fn hash<T>(&self, _: T) {}
}
#[derive(Hash)]
struct Foo(Bar);
//~^ error: `Bar: Hash` is not satisfied
fn main() {}