]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-48728.stderr
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-48728.stderr
1 error[E0119]: conflicting implementations of trait `std::clone::Clone` for type `Node<[_]>`
2   --> $DIR/issue-48728.rs:4:10
3    |
4 LL | #[derive(Clone)]
5    |          ^^^^^ conflicting implementation for `Node<[_]>`
6 ...
7 LL | impl<T: Clone + ?Sized> Clone for Node<[T]> {
8    | ------------------------------------------- first implementation here
9    |
10    = note: upstream crates may add a new impl of trait `std::clone::Clone` for type `[_]` in future versions
11    = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0119`.