1 2 3 4 5 6 7 8 9 10
static FOO: i32 = 0; pub fn bar() -> i32 { FOO } pub fn baz() -> i32 { static QUX: i32 = 0; QUX }