about summary refs log tree commit diff
path: root/tests/ui/wf/conflicting-impls.stderr
blob: d31ae17aa8f7d24fc169c4747a61d3c4cdc3cff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0119]: conflicting implementations of trait `TryFrom<Ty>` for type `u8`
  --> $DIR/conflicting-impls.rs:12:1
   |
LL | impl TryFrom<Ty> for u8 {
   | ----------------------- first implementation here
...
LL | impl TryFrom<Ty> for u8 {
   | ^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `u8`

error: aborting due to 1 previous error

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