2018-05-12 11:41:03 +00:00
|
|
|
#![allow(dead_code, unused_variables)]
|
|
|
|
|
|
|
|
/// Should not trigger an ICE in `SpanlessEq` / `consts::constant`
|
|
|
|
///
|
2018-11-22 03:40:09 +00:00
|
|
|
/// Issue: https://github.com/rust-lang/rust-clippy/issues/1782
|
2018-05-12 11:41:03 +00:00
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
|
|
fn spanless_eq_ice() {
|
|
|
|
let txt = "something";
|
|
|
|
match txt {
|
2018-12-09 22:26:16 +00:00
|
|
|
"something" => unsafe {
|
|
|
|
ptr::write(
|
|
|
|
ptr::null_mut() as *mut u32,
|
|
|
|
mem::transmute::<[u8; 4], _>([0, 0, 0, 255]),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
_ => unsafe {
|
|
|
|
ptr::write(
|
|
|
|
ptr::null_mut() as *mut u32,
|
|
|
|
mem::transmute::<[u8; 4], _>([13, 246, 24, 255]),
|
|
|
|
)
|
|
|
|
},
|
2018-05-12 11:41:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|