2025-06-03 09:54:30 +02:00
|
|
|
// Make sure that we don't parse `extern crate async` as
|
2020-02-11 08:27:50 +01:00
|
|
|
// the front matter of a function leading us astray.
|
|
|
|
|
|
2025-06-03 09:54:30 +02:00
|
|
|
//@ edition: 2015
|
2020-02-11 08:27:50 +01:00
|
|
|
//@ 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;
|