summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/reasons-forbidden.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/reasons-forbidden.stderr')
-rw-r--r--src/test/ui/lint/reasons-forbidden.stderr31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/test/ui/lint/reasons-forbidden.stderr b/src/test/ui/lint/reasons-forbidden.stderr
new file mode 100644
index 000000000..ab6f19a01
--- /dev/null
+++ b/src/test/ui/lint/reasons-forbidden.stderr
@@ -0,0 +1,31 @@
+error[E0453]: allow(unsafe_code) incompatible with previous forbid
+ --> $DIR/reasons-forbidden.rs:25:13
+ |
+LL | unsafe_code,
+ | ----------- `forbid` level set here
+...
+LL | #[allow(unsafe_code)]
+ | ^^^^^^^^^^^ overruled by previous forbid
+ |
+ = note: our errors & omissions insurance policy doesn't cover unsafe Rust
+
+error: usage of an `unsafe` block
+ --> $DIR/reasons-forbidden.rs:29:5
+ |
+LL | / unsafe {
+LL | |
+LL | |
+LL | | *a_billion_dollar_mistake
+LL | | }
+ | |_____^
+ |
+ = note: our errors & omissions insurance policy doesn't cover unsafe Rust
+note: the lint level is defined here
+ --> $DIR/reasons-forbidden.rs:14:5
+ |
+LL | unsafe_code,
+ | ^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0453`.