]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-1920-3.stderr
Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-1920-3.stderr
1 error[E0277]: the trait bound `issue_1920::S: std::clone::Clone` is not satisfied
2   --> $DIR/issue-1920-3.rs:14:5
3    |
4 LL |     assert_clone::<foo::issue_1920::S>();
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `issue_1920::S`
6    |
7 note: required by `assert_clone`
8   --> $DIR/issue-1920-3.rs:11:1
9    |
10 LL | fn assert_clone<T>() where T : Clone { }
11    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.