]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unsafe_removed_from_name.stderr
Fix #88256, remove duplicated diagnostic
[rust.git] / tests / ui / unsafe_removed_from_name.stderr
index 2b014ca58631f196f0eecbb6418749d4aa0494a4..4f871cbe41b06a0588fa1f9c95fade5c4e47f254 100644 (file)
@@ -1,21 +1,21 @@
-error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCell`
--> $DIR/unsafe_removed_from_name.rs:7:1
-  |
-7 | 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 `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:9:1
-  |
-9 | use std::cell::UnsafeCell as TotallySafeCellAgain;
-  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+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:23:1
+error: removed `unsafe` from the name of `Unsafe` in use as `LieAboutModSafety`
+  --> $DIR/unsafe_removed_from_name.rs:21:1
    |
-23 | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
+LL | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 3 previous errors