// TDD: Minimal test for borrowed param deref in comparison
// Bug #5 simplified - just the comparison issue
fn test_comparison(name: string) -> bool {
let stored = "hello".to_string();
return stored == name; // Should work: string == &String with auto-deref
}
fn main() {
let n = "hello".to_string();
let result = test_comparison(n);
println!("Result: {}", result);
}