about summary refs log tree commit diff
path: root/tests/ui/frontmatter/shebang.rs
blob: abd983f219bdd0a66e489daae75bd76df946675a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env -S cargo -Zscript
---
[dependencies]
clap = "4"
---

//@ check-pass

// Shebangs on a file can precede a frontmatter.

#![feature(frontmatter)]

fn main () {}