Files
rust/tests/ui/parser/shebang/shebang-comment.rs

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

8 lines
134 B
Rust
Raw Normal View History

#!//bin/bash
//@ check-pass
2024-10-30 16:47:47 -07:00
//@ reference: input.shebang
fn main() {
println!("a valid shebang (that is also a rust comment)")
}