DEBSOURCES
Skip Quicknav
sources / rustc / 1.41.1%2Bdfsg1-1~deb10u1 / src / test / 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() { }