summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/safety-trait-impl.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /tests/ui/traits/safety-trait-impl.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/traits/safety-trait-impl.stderr')
-rw-r--r--tests/ui/traits/safety-trait-impl.stderr28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/ui/traits/safety-trait-impl.stderr b/tests/ui/traits/safety-trait-impl.stderr
new file mode 100644
index 000000000..e78e0e3a6
--- /dev/null
+++ b/tests/ui/traits/safety-trait-impl.stderr
@@ -0,0 +1,28 @@
+error[E0200]: the trait `UnsafeTrait` requires an `unsafe impl` declaration
+ --> $DIR/safety-trait-impl.rs:14:1
+ |
+LL | impl UnsafeTrait for u16 { }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+ = 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 { }
+ | ++++++
+
+error[E0199]: implementing the trait `SafeTrait` is not unsafe
+ --> $DIR/safety-trait-impl.rs:16:1
+ |
+LL | unsafe impl SafeTrait for u32 { }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: remove `unsafe` from this trait implementation
+ |
+LL - unsafe impl SafeTrait for u32 { }
+LL + impl SafeTrait for u32 { }
+ |
+
+error: aborting due to 2 previous errors
+
+Some errors have detailed explanations: E0199, E0200.
+For more information about an error, try `rustc --explain E0199`.