Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
fn f(x: *const isize) {
unsafe {
assert_eq!(*x, 3);
}
pub fn main() {
f(&3);