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

/// ```rust
/// fn main() {
///     let _ = async { };
/// }
/// ```
fn main() {
    let _ = async { };
}