Compiler expects function, finds &str. This causes a compiler panic when attempting to compile. ``` rust fn main() { let train = "foo"; let x = train("hello"); } fn train(file: &str) -> bool { true } ```