Rust files that re-use a name with a different type cause the rs2bril compiler to generate ill-typed bril. Example: ``` fn main() { let x: f64 = 2.0; let x: i64 = 2; } ```