DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / error-codes / E0275.rs
12345678
trait Foo {} struct Bar<T>(T); impl<T> Foo for T where Bar<T>: Foo {} //~ ERROR E0275 fn main() { }