2018-02-09 14:49:38 +00:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
enum Void {}
|
|
|
|
|
|
|
|
// Tests that we detect unsafe places (specifically, union fields and
|
|
|
|
// raw pointer dereferences), even when they're matched on while having
|
|
|
|
// an uninhabited type (equivalent to `std::intrinsics::unreachable()`).
|
|
|
|
|
|
|
|
fn union_field() {
|
|
|
|
union Union { unit: (), void: Void }
|
|
|
|
let u = Union { unit: () };
|
|
|
|
match u.void {}
|
2021-05-25 14:35:24 +00:00
|
|
|
//~^ ERROR access to union field is unsafe
|
2018-02-09 14:49:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn raw_ptr_deref() {
|
|
|
|
let ptr = std::ptr::null::<Void>();
|
|
|
|
match *ptr {}
|
2018-07-10 08:52:05 +00:00
|
|
|
//~^ ERROR dereference of raw pointer is unsafe
|
2018-02-09 14:49:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|