Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
89 B
Rust
Raw Normal View History

2017-06-08 00:13:28 +02:00
fn main() {
let v = core::ptr::null::<u8>();
2017-06-08 00:13:28 +02:00
v as *const [u8]; //~ ERROR E0607
}