summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/async-move-doctest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/async-move-doctest.rs')
-rw-r--r--src/test/rustdoc/async-move-doctest.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/rustdoc/async-move-doctest.rs b/src/test/rustdoc/async-move-doctest.rs
new file mode 100644
index 000000000..2ba61388c
--- /dev/null
+++ b/src/test/rustdoc/async-move-doctest.rs
@@ -0,0 +1,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 {});
+//! }
+//! ```