summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/reasons-forbidden.stderr
blob: ab6f19a019d43fd85d2a9eb07112dfe648391a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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`.