summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs/struct-path-alias-bounds.rs
blob: 1e2c4b836a132ab0545d52d55a2f747a4f29f3dc (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: Clone` is not satisfied
}