Files
rust/tests/ui/parser/shebang/shebang-must-start-file.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
147 B
Rust
Raw Normal View History

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