mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
397 B
Plaintext
18 lines
397 B
Plaintext
warning: unnecessary `unsafe` block
|
|
--> $DIR/expr-unsafe.rs:12:13
|
|
|
|
|
LL | unsafe {
|
|
| ------ because it's nested under this `unsafe` block
|
|
...
|
|
LL | unsafe {}
|
|
| ^^^^^^ unnecessary `unsafe` block
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/expr-unsafe.rs:4:9
|
|
|
|
|
LL | #![warn(unused_unsafe)]
|
|
| ^^^^^^^^^^^^^
|
|
|
|
warning: 1 warning emitted
|
|
|