]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-1920-3.stderr
Consider privacy more carefully when suggesting accessing fields
[rust.git] / src / test / ui / issues / issue-1920-3.stderr
1 error[E0277]: the trait bound `S: Clone` is not satisfied
2   --> $DIR/issue-1920-3.rs:14: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-3.rs:11: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`.