rust-clippy/clippy_tests/examples/unsafe_removed_from_name.stderr
Georg Brandl 6b6253016f Update stderr files for change in error reporting
rustc now (https://github.com/rust-lang/rust/issues/33525) does not
report an error count anymore, because it was not correct in many cases.
2017-05-26 16:54:07 +02:00

29 lines
1 KiB
Text

error: removed "unsafe" from the name of `UnsafeCell` in use as `TotallySafeCell`
--> 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`
--> unsafe_removed_from_name.rs:9:1
|
9 | use std::cell::UnsafeCell as TotallySafeCellAgain;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
error: removed "unsafe" from the name of `Unsafe` in use as `LieAboutModSafety`
--> unsafe_removed_from_name.rs:23:1
|
23 | use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unsafe-removed-from-name` implied by `-D warnings`
error: aborting due to previous error(s)
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.