mirror of https://github.com/rust-lang/rust
21 lines
503 B
Plaintext
21 lines
503 B
Plaintext
error: unnecessary `unsafe` block
|
|
--> $DIR/issue-48131.rs:9:9
|
|
|
|
|
LL | unsafe { /* unnecessary */ }
|
|
| ^^^^^^ unnecessary `unsafe` block
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/issue-48131.rs:3:9
|
|
|
|
|
LL | #![deny(unused_unsafe)]
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: unnecessary `unsafe` block
|
|
--> $DIR/issue-48131.rs:20:13
|
|
|
|
|
LL | unsafe { /* unnecessary */ }
|
|
| ^^^^^^ unnecessary `unsafe` block
|
|
|
|
error: aborting due to 2 previous errors
|
|
|