Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// stderr-per-bitwidth
use std::mem;
struct MyStr(str);
const MYSTR_NO_INIT: &MyStr = unsafe { mem::transmute::<&[_], _>(&[&()]) };
//~^ ERROR: it is undefined behavior to use this value
fn main() {}