rust/tests/ui/parser/shebang/shebang-must-start-file.rs
2025-04-08 23:06:31 +03:00

9 lines
153 B
Rust

// something on the first line for tidy
#!/bin/bash //~ ERROR expected `[`, found `/`
//@ reference: input.shebang
fn main() {
println!("ok!");
}