dirbaio[m]: ```rust void foo() { int z = 0; // local variable static int w = 0; // global static variable } fn foo() { let z = 0; // local variable static Z: u32 = 0; // global variable } ```