rust/tests/ui/unsafe_removed_from_name.rs

31 lines
860 B
Rust
Raw Normal View History

#![allow(unused_imports)]
#![allow(dead_code)]
2018-07-28 10:34:52 -05:00
#![warn(clippy::unsafe_removed_from_name)]
2018-12-09 16:26:16 -06:00
use std::cell::UnsafeCell as TotallySafeCell;
2017-02-08 07:58:07 -06:00
use std::cell::UnsafeCell as TotallySafeCellAgain;
2017-02-08 07:58:07 -06:00
// Shouldn't error
2018-12-09 16:26:16 -06:00
use std::cell::RefCell as ProbablyNotUnsafe;
use std::cell::RefCell as RefCellThatCantBeUnsafe;
2018-12-09 16:26:16 -06:00
use std::cell::UnsafeCell as SuperDangerousUnsafeCell;
use std::cell::UnsafeCell as Dangerunsafe;
use std::cell::UnsafeCell as Bombsawayunsafe;
mod mod_with_some_unsafe_things {
2022-03-27 07:41:09 -05:00
pub struct Safe;
pub struct Unsafe;
}
use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
2017-02-08 07:58:07 -06:00
// Shouldn't error
use mod_with_some_unsafe_things::Safe as IPromiseItsSafeThisTime;
use mod_with_some_unsafe_things::Unsafe as SuperUnsafeModThing;
#[allow(clippy::unsafe_removed_from_name)]
use mod_with_some_unsafe_things::Unsafe as SuperSafeThing;
fn main() {}