]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/extern-crate-async.rs
Rollup merge of #92024 - pcwalton:per-codegen-unit-names, r=davidtwco
[rust.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;