about summary refs log tree commit diff
path: root/tests/ui/parser/shebang/shebang-comment.rs
blob: 6f89e8954c3aa880194781d6c1236206b17d5d0d (plain)
1
2
3
4
5
6
7
#!//bin/bash

//@ check-pass
//@ reference: input.shebang
fn main() {
    println!("a valid shebang (that is also a rust comment)")
}