about summary refs log tree commit diff
path: root/tests/rustdoc/async/async-move-doctest.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:35:41 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:49:12 +0200
commit27e39c3ac6173e4a9e9e1439bfc48f0ca1505542 (patch)
tree7e1940cc45292e062475d985587f6f9b9b811a15 /tests/rustdoc/async/async-move-doctest.rs
parente14e19a67dcdd7437b29bd37b4aa1fde3e5fecee (diff)
downloadrust-27e39c3ac6173e4a9e9e1439bfc48f0ca1505542.tar.gz
rust-27e39c3ac6173e4a9e9e1439bfc48f0ca1505542.zip
Created `tests/rustdoc/async` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/async/async-move-doctest.rs')
-rw-r--r--tests/rustdoc/async/async-move-doctest.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/rustdoc/async/async-move-doctest.rs b/tests/rustdoc/async/async-move-doctest.rs
new file mode 100644
index 00000000000..e18ec353533
--- /dev/null
+++ b/tests/rustdoc/async/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 {});
+//! }
+//! ```