blob: e18ec353533dff0de54dcdecaf5c9b29cfa73165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ compile-flags:--test
//@ edition:2018
// Prior to setting the default edition for the doctest pre-parser,
// this doctest would fail due to a fatal parsing error.
// see https://github.com/rust-lang/rust/issues/59313
//! ```
//! fn foo() {
//! drop(async move {});
//! }
//! ```
|