Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
static A: usize = 42;
static B: usize = A;
fn main() {
assert_eq!(B, 42);
}