about summary refs log tree commit diff
path: root/src/test/ui/structs/struct-path-alias-bounds.rs
blob: ae6ca8082692bc5ae074f16b6c475a60fb81f9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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
}