]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/extern-crate-async.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / parser / extern-crate-async.rs
1 // Make sure that we don't parse `extern crate async`
2 // the front matter of a function leading us astray.
3
4 // check-pass
5
6 fn main() {}
7
8 #[cfg(FALSE)]
9 extern crate async;
10
11 #[cfg(FALSE)]
12 extern crate async as something_else;