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 main()6 fn main() {} 7 8 #[cfg(FALSE)] 9 extern crate async; 10 11 #[cfg(FALSE)] 12 extern crate async as something_else; 13