We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Compiler expects function, finds &str. This causes a compiler panic when attempting to compile.
fn main() { let train = "foo"; let x = train("hello"); } fn train(file: &str) -> bool { true }