10 lines
148 B
Rust
10 lines
148 B
Rust
|
fn main() {
|
||
|
let foo = "bar";
|
||
|
let x = foo("baz");
|
||
|
//~^ ERROR: expected function, found `&str`
|
||
|
}
|
||
|
|
||
|
fn foo(file: &str) -> bool {
|
||
|
true
|
||
|
}
|