rust/tests/ui/unsafe_removed_from_name.stderr

23 lines
852 B
Text
Raw Normal View History

error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCell`
2017-08-01 17:54:21 +02:00
--> $DIR/unsafe_removed_from_name.rs:7:1
|
7 | use std::cell::{UnsafeCell as TotallySafeCell};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCellAgain`
2017-08-01 17:54:21 +02:00
--> $DIR/unsafe_removed_from_name.rs:9:1
|
9 | use std::cell::UnsafeCell as TotallySafeCellAgain;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: removed "unsafe" from the name of `Unsafe` in use as `LieAboutModSafety`
2017-08-01 17:54:21 +02:00
--> $DIR/unsafe_removed_from_name.rs:23:1
|
23 | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 3 previous errors