]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-21160.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-21160.rs
1 struct Bar;
2
3 impl Bar {
4 fn hash<T>(&self, _: T) {}
5 }
6
7 #[derive(Hash)]
8 struct Foo(Bar);
9 //~^ error: `Bar: Hash` is not satisfied
10
11 fn main() {}