rust/src/test/ui/codemap_tests/coherence-overlapping-inherent-impl-trait.stderr

12 lines
395 B
Text
Raw Normal View History

error[E0592]: duplicate definitions with name `f`
2019-05-28 14:46:13 -04:00
--> $DIR/coherence-overlapping-inherent-impl-trait.rs:4:14
|
2019-05-28 14:46:13 -04:00
LL | impl dyn C { fn f() {} }
| ^^^^^^^^^ duplicate definitions for `f`
LL | impl dyn C { fn f() {} }
| --------- other definition for `f`
error: aborting due to previous error
2019-06-14 10:54:27 +09:00
For more information about this error, try `rustc --explain E0592`.