rust/src/test/ui/coherence/coherence-overlap-issue-23516-inherent.old.stderr

14 lines
527 B
Plaintext
Raw Normal View History

error[E0592]: duplicate definitions with name `dummy`
2018-12-28 19:13:06 -06:00
--> $DIR/coherence-overlap-issue-23516-inherent.rs:13:25
|
2018-02-22 18:42:32 -06:00
LL | impl<T:Sugar> Cake<T> { fn dummy(&self) { } }
| ^^^^^^^^^^^^^^^^^^^ duplicate definitions for `dummy`
2018-12-28 19:13:06 -06:00
...
2018-02-22 18:42:32 -06:00
LL | impl<U:Sugar> Cake<Box<U>> { fn dummy(&self) { } }
| ------------------- other definition for `dummy`
|
= note: downstream crates may implement trait `Sugar` for type `std::boxed::Box<_>`
error: aborting due to previous error