about summary refs log tree commit diff
path: root/tests/ui/parser/shebang/shebang-must-start-file.rs
blob: f956cff3b081028bac1697c9eedcd1bf8373889a (plain)
1
2
3
4
5
6
7
8
// something on the first line for tidy
#!/bin/bash  //~ ERROR expected `[`, found `/`

//@ reference: input.shebang

fn main() {
    println!("ok!");
}