2017-02-07 14:05:30 -06:00
|
|
|
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCell`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/unsafe_removed_from_name.rs:7:1
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
7 | use std::cell::{UnsafeCell as TotallySafeCell};
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCellAgain`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/unsafe_removed_from_name.rs:9:1
|
2017-05-11 10:02:19 -05:00
|
|
|
|
|
|
|
|
9 | use std::cell::UnsafeCell as TotallySafeCellAgain;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: removed "unsafe" from the name of `Unsafe` in use as `LieAboutModSafety`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/unsafe_removed_from_name.rs:23:1
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 10:02:19 -05:00
|
|
|
23 | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|