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

//@ reference: input.shebang

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