]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/e0119/issue-27403.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / error-codes / e0119 / issue-27403.stderr
1 error[E0119]: conflicting implementations of trait `std::convert::Into<_>` for type `GenX<_>`:
2 --> $DIR/issue-27403.rs:5:1
3 |
4 LL | impl<S> Into<S> for GenX<S> {
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: conflicting implementation in crate `core`:
8 - impl<T, U> Into<U> for T
9 where U: From<T>;
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0119`.