2020-02-11 08:27:50 +01:00
|
|
|
// Make sure that we don't parse `extern crate async`
|
|
|
|
|
// the front matter of a function leading us astray.
|
|
|
|
|
|
|
|
|
|
//@ check-pass
|
|
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
2025-03-29 17:24:03 +00:00
|
|
|
#[cfg(false)]
|
2020-02-11 08:27:50 +01:00
|
|
|
extern crate async;
|
|
|
|
|
|
2025-03-29 17:24:03 +00:00
|
|
|
#[cfg(false)]
|
2020-02-11 08:27:50 +01:00
|
|
|
extern crate async as something_else;
|