mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
17 lines
586 B
Plaintext
17 lines
586 B
Plaintext
error[E0119]: conflicting implementations of trait `IntoPyDictPointer` for type `()`
|
|
--> $DIR/issue-52050.rs:28:1
|
|
|
|
|
LL | / impl<I> IntoPyDictPointer for I
|
|
LL | | where
|
|
LL | | I: Iterator,
|
|
| |________________- first implementation here
|
|
...
|
|
LL | impl IntoPyDictPointer for ()
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `()`
|
|
|
|
|
= note: upstream crates may add a new impl of trait `std::iter::Iterator` for type `()` in future versions
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|