summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/shebang/shebang-must-start-file.rs
blob: e0392572dc81d9134173abfb10692228b5a620e0 (plain)
1
2
3
4
5
6
// something on the first line for tidy
#!/bin/bash  //~ expected `[`, found `/`

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