2017-02-07 20:05:30 +00:00
|
|
|
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCell`
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/unsafe_removed_from_name.rs:7:1
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
7 | use std::cell::{UnsafeCell as TotallySafeCell};
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCellAgain`
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/unsafe_removed_from_name.rs:9:1
|
2017-05-11 15:02:19 +00:00
|
|
|
|
|
|
|
|
9 | use std::cell::UnsafeCell as TotallySafeCellAgain;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: removed "unsafe" from the name of `Unsafe` in use as `LieAboutModSafety`
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/unsafe_removed_from_name.rs:23:1
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 15:02:19 +00:00
|
|
|
23 | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|