1 2 3 4 5 6 7 8
pub fn foo<T>() -> isize { static a: isize = 3; a } pub fn bar() -> isize { foo::<isize>() }