2017-09-18 05:47:33 -05:00
|
|
|
|
|
|
|
|
2016-04-19 18:27:01 -05:00
|
|
|
#![allow(unused_imports)]
|
2016-04-19 23:52:10 -05:00
|
|
|
#![allow(dead_code)]
|
2017-05-17 07:19:44 -05:00
|
|
|
#![warn(unsafe_removed_from_name)]
|
2016-04-19 18:27:01 -05:00
|
|
|
|
|
|
|
use std::cell::{UnsafeCell as TotallySafeCell};
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-04-19 18:27:01 -05:00
|
|
|
use std::cell::UnsafeCell as TotallySafeCellAgain;
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-04-19 23:52:10 -05:00
|
|
|
// Shouldn't error
|
|
|
|
use std::cell::{UnsafeCell as SuperDangerousUnsafeCell};
|
|
|
|
use std::cell::{UnsafeCell as Dangerunsafe};
|
|
|
|
use std::cell::UnsafeCell as Bombsawayunsafe;
|
|
|
|
use std::cell::{RefCell as ProbablyNotUnsafe};
|
|
|
|
use std::cell::RefCell as RefCellThatCantBeUnsafe;
|
|
|
|
|
|
|
|
mod mod_with_some_unsafe_things {
|
|
|
|
pub struct Safe {}
|
|
|
|
pub struct Unsafe {}
|
|
|
|
}
|
|
|
|
|
|
|
|
use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;
|
2017-02-08 07:58:07 -06:00
|
|
|
|
2016-04-19 23:52:10 -05:00
|
|
|
// Shouldn't error
|
|
|
|
use mod_with_some_unsafe_things::Safe as IPromiseItsSafeThisTime;
|
|
|
|
use mod_with_some_unsafe_things::Unsafe as SuperUnsafeModThing;
|
|
|
|
|
2016-04-19 18:27:01 -05:00
|
|
|
fn main() {}
|