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