2018-08-08 07:28:26 -05:00
error[E0199]: implementing the trait `MySafeTrait` is not unsafe
2020-01-09 04:56:38 -06:00
--> $DIR/coherence-default-trait-impl.rs:8:1
2018-08-08 07:28:26 -05:00
|
LL | unsafe impl MySafeTrait for Foo {}
2023-01-01 11:48:14 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-10-19 21:06:50 -05:00
|
help: remove `unsafe` from this trait implementation
|
LL - unsafe impl MySafeTrait for Foo {}
LL + impl MySafeTrait for Foo {}
|
2018-08-08 07:28:26 -05:00
error[E0200]: the trait `MyUnsafeTrait` requires an `unsafe impl` declaration
2020-01-09 04:56:38 -06:00
--> $DIR/coherence-default-trait-impl.rs:13:1
2018-08-08 07:28:26 -05:00
|
LL | impl MyUnsafeTrait for Foo {}
2023-01-01 11:48:14 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-10-19 21:06:50 -05:00
|
= note: the trait `MyUnsafeTrait` enforces invariants that the compiler can't check. Review the trait documentation and make sure this implementation upholds those invariants before adding the `unsafe` keyword
help: add `unsafe` to this trait implementation
|
LL | unsafe impl MyUnsafeTrait for Foo {}
| ++++++
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
2019-04-17 12:26:38 -05:00
Some errors have detailed explanations: E0199, E0200.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0199`.