1 2 3 4 5 6 7 8
// Test: Variable not found error translation // Expected: "Variable not found: count" fn main() { let total = 100 println!("Count: {}", count) // Error: count not declared }