rustc/tests/ui/parser/shebang/shebang-must-start-file.rs
2025-01-11 15:57:26 +01:00

9 lines
147 B
Rust

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