Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![feature(start)]
#[start]
pub fn main(_: isize, _: *const *const u8) -> isize {
println!("hello");
0
}