]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-1920-1.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / issues / issue-1920-1.stderr
1 error[E0277]: the trait bound `S: Clone` is not satisfied
2 --> $DIR/issue-1920-1.rs:12:20
3 |
4 LL | assert_clone::<foo::issue_1920::S>();
5 | ^^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `S`
6 |
7 note: required by a bound in `assert_clone`
8 --> $DIR/issue-1920-1.rs:9:32
9 |
10 LL | fn assert_clone<T>() where T : Clone { }
11 | ^^^^^ required by this bound in `assert_clone`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.