]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/extern-crate-async.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[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;