2017-12-10 22:47:55 +03:00
|
|
|
error[E0119]: conflicting implementations of trait `std::ops::Drop` for type `MyStruct`:
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/issue-28568.rs:17:1
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2017-12-17 23:46:55 -08:00
|
|
|
13 | impl Drop for MyStruct {
|
|
|
|
| ---------------------- first implementation here
|
|
|
|
...
|
|
|
|
17 | impl Drop for MyStruct {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `MyStruct`
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0119"
|