]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0275.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.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 }