]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-1920-2.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-1920-2.stderr
CommitLineData
1b1a35ee 1error[E0277]: the trait bound `S: Clone` is not satisfied
e1599b0c 2 --> $DIR/issue-1920-2.rs:10:20
b7449926 3 |
e1599b0c 4LL | assert_clone::<bar::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-2.rs:7:32
9 |
10LL | fn assert_clone<T>() where T : Clone { }
11 | ^^^^^ required by this bound in `assert_clone`
b7449926
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0277`.