]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-95898.stderr
Add regression test for #82830
[rust.git] / src / test / ui / traits / issue-95898.stderr
1 error[E0599]: no method named `clone` found for type parameter `T` in the current scope
2   --> $DIR/issue-95898.rs:5:7
3    |
4 LL |     t.clone();
5    |       ^^^^^ method not found in `T`
6    |
7    = help: items from traits can only be used if the type parameter is bounded by the trait
8 help: the following trait defines an item `clone`, perhaps you need to restrict type parameter `T` with it:
9    |
10 LL | fn foo<T: Clone>(t: T) {
11    |           +++++
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.