]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-1920-2.stderr
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
[rust.git] / tests / ui / issues / issue-1920-2.stderr
1 error[E0277]: the trait bound `S: Clone` is not satisfied
2   --> $DIR/issue-1920-2.rs:10:20
3    |
4 LL |     assert_clone::<bar::S>();
5    |                    ^^^^^^ the trait `Clone` is not implemented for `S`
6    |
7 note: required by a bound in `assert_clone`
8   --> $DIR/issue-1920-2.rs:7: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`.