rust/tests/ui/traits/safety-trait-impl.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
986 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0200]: the trait `UnsafeTrait` requires an `unsafe impl` declaration
2021-02-08 22:15:45 +00:00
--> $DIR/safety-trait-impl.rs:14:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | impl UnsafeTrait for u16 { }
2023-01-01 17:48:14 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: the trait `UnsafeTrait` 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 UnsafeTrait for u16 { }
| ++++++
2018-08-08 12:28:26 +00:00
error[E0199]: implementing the trait `SafeTrait` is not unsafe
2021-02-08 22:15:45 +00:00
--> $DIR/safety-trait-impl.rs:16:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | unsafe impl SafeTrait for u32 { }
2023-01-01 17:48:14 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: remove `unsafe` from this trait implementation
|
LL - unsafe impl SafeTrait for u32 { }
LL + impl SafeTrait for u32 { }
|
2018-08-08 12:28:26 +00:00
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0199, E0200.
2018-08-08 12:28:26 +00:00
For more information about an error, try `rustc --explain E0199`.