mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
35 lines
1.4 KiB
Text
35 lines
1.4 KiB
Text
error: removed `unsafe` from the name of `UnsafeCell` in use as `TotallySafeCell`
|
|
--> tests/ui/unsafe_removed_from_name.rs:5:1
|
|
|
|
|
LL | use std::cell::UnsafeCell as TotallySafeCell;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unsafe-removed-from-name` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::unsafe_removed_from_name)]`
|
|
|
|
error: removed `unsafe` from the name of `UnsafeCell` in use as `TotallySafeCellAgain`
|
|
--> tests/ui/unsafe_removed_from_name.rs:9:1
|
|
|
|
|
LL | use std::cell::UnsafeCell as TotallySafeCellAgain;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: removed `unsafe` from the name of `Unsafe` in use as `LieAboutModSafety`
|
|
--> tests/ui/unsafe_removed_from_name.rs:28:1
|
|
|
|
|
LL | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: removed `unsafe` from the name of `Unsafe` in use as `A`
|
|
--> tests/ui/unsafe_removed_from_name.rs:32:1
|
|
|
|
|
LL | use mod_with_some_unsafe_things::{Unsafe as A, Unsafe as B};
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: removed `unsafe` from the name of `Unsafe` in use as `B`
|
|
--> tests/ui/unsafe_removed_from_name.rs:32:1
|
|
|
|
|
LL | use mod_with_some_unsafe_things::{Unsafe as A, Unsafe as B};
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|