Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// issue #36286
struct S<T: Clone> { a: T }
struct NoClone;
type A = S<NoClone>;
fn main() {
let s = A { a: NoClone };
//~^ ERROR the trait bound `NoClone: Clone` is not satisfied
}