Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
parser
/
extern-crate-async.rs
blob: 13bd786d09219c01a0f829758f67bacc313f133a [
file
] [
log
] [
blame
]
// Make sure that we don't parse `extern crate async` as
// the front matter of a function leading us astray.
//@ edition: 2015
//@ check-pass
fn
main
()
{}
#[
cfg
(
false
)]
extern
crate async
;
#[
cfg
(
false
)]
extern
crate async
as
something_else
;