Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![crate_name = "b"]
#![crate_type = "rlib"]
extern crate a;
static FOO: usize = 3;
pub fn token() -> &'static usize { &FOO }
pub fn a_token() -> &'static usize { a::token() }