]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-1920-1.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-1920-1.stderr
1 error[E0277]: the trait bound `foo::issue_1920::S: std::clone::Clone` is not satisfied
2   --> $DIR/issue-1920-1.rs:22:5
3    |
4 LL |     assert_clone::<foo::issue_1920::S>();
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::clone::Clone` is not implemented for `foo::issue_1920::S`
6    |
7 note: required by `assert_clone`
8   --> $DIR/issue-1920-1.rs:19: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`.