mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
22 lines
866 B
Text
22 lines
866 B
Text
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCell`
|
|
--> $DIR/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`
|
|
|
|
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCellAgain`
|
|
--> $DIR/unsafe_removed_from_name.rs:7:1
|
|
|
|
|
LL | use std::cell::UnsafeCell as TotallySafeCellAgain;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: removed "unsafe" from the name of `Unsafe` in use as `LieAboutModSafety`
|
|
--> $DIR/unsafe_removed_from_name.rs:21:1
|
|
|
|
|
LL | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|