1
Fork 0
rust/src/test/ui/issues/issue-28568.stderr

13 lines
421 B
Text
Raw Normal View History

error[E0119]: conflicting implementations of trait `std::ops::Drop` for type `MyStruct`:
--> $DIR/issue-28568.rs:17:1
|
2018-02-23 03:42:32 +03:00
LL | impl Drop for MyStruct {
| ---------------------- first implementation here
...
2018-02-23 03:42:32 +03:00
LL | impl Drop for MyStruct {
| ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `MyStruct`
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0119`.