blob: 1e2c4b836a132ab0545d52d55a2f747a4f29f3dc [file] [log] [blame] [edit]
// 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
}