Update test for E0796
and static_mut_ref
lint
This commit is contained in:
parent
0cfbc47b9a
commit
837c0305c6
@ -111,6 +111,9 @@ fn start<T: Termination + 'static>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
static mut NUM: u8 = 6 * 7;
|
static mut NUM: u8 = 6 * 7;
|
||||||
|
|
||||||
|
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_ref` lint
|
||||||
|
#[allow(static_mut_ref)]
|
||||||
static NUM_REF: &'static u8 = unsafe { &NUM };
|
static NUM_REF: &'static u8 = unsafe { &NUM };
|
||||||
|
|
||||||
unsafe fn zeroed<T>() -> T {
|
unsafe fn zeroed<T>() -> T {
|
||||||
|
Loading…
Reference in New Issue
Block a user