2021-10-28 08:10:59 -05:00
|
|
|
error: unsafe block missing a safety comment
|
|
|
|
--> $DIR/auxiliary/ice-7868-aux.rs:2:5
|
|
|
|
|
|
|
|
|
LL | unsafe { 0 };
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::undocumented-unsafe-blocks` implied by `-D warnings`
|
|
|
|
help: consider adding a safety comment
|
|
|
|
|
|
2021-12-17 13:48:38 -06:00
|
|
|
LL ~ // SAFETY: ...
|
2021-10-28 08:10:59 -05:00
|
|
|
LL ~ unsafe { 0 };
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|