summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unsafe_removed_from_name.stderr
blob: 4f871cbe41b06a0588fa1f9c95fade5c4e47f254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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