blob: ae6ca8082692bc5ae074f16b6c475a60fb81f9f4 [file] [log] [blame]
// 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: std::clone::Clone` is not satisfied
}