summary refs log tree commit diff
path: root/src/test/rustdoc/edition-flag.rs
blob: 5571245f28ddb33803a18aff48fc6f6079df85a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// compile-flags:--test -Z unstable-options
// edition:2018

#![feature(async_await)]

/// ```rust
/// #![feature(async_await)]
/// fn main() {
///     let _ = async { };
/// }
/// ```
fn main() {
    let _ = async { };
}