summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/bounds-are-checked-2.stderr
blob: 20e478160c61b04e2eede004ddb37cf1f2eb6d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0277]: the trait bound `T: Clone` is not satisfied
  --> $DIR/bounds-are-checked-2.rs:9:5
   |
LL |     t
   |     ^ the trait `Clone` is not implemented for `T`
   |
help: consider restricting type parameter `T`
   |
LL | type X<T: std::clone::Clone> = impl Clone;
   |         +++++++++++++++++++

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0277`.