]> git.proxmox.com Git - rustc.git/blob - tests/ui/error-codes/E0275.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / error-codes / E0275.rs
1 // normalize-stderr-test: "long-type-\d+" -> "long-type-hash"
2 trait Foo {}
3
4 struct Bar<T>(T);
5
6 impl<T> Foo for T where Bar<T>: Foo {} //~ ERROR E0275
7
8 fn main() {
9 }