rust/tests/ui/structs/struct-path-alias-bounds.rs

12 lines
193 B
Rust

// 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
}