about summary refs log tree commit diff
path: root/tests/rustdoc-ui/run-as-standalone.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc-ui/run-as-standalone.rs')
-rw-r--r--tests/rustdoc-ui/run-as-standalone.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/rustdoc-ui/run-as-standalone.rs b/tests/rustdoc-ui/run-as-standalone.rs
deleted file mode 100644
index a0fb0340f8d..00000000000
--- a/tests/rustdoc-ui/run-as-standalone.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// This test ensures that if there is only one mergeable doctest, then it is
-// instead run as part of standalone doctests.
-
-//@ compile-flags:--test --test-args=--test-threads=1 -Zunstable-options --edition 2024
-//@ normalize-stdout-test: "tests/rustdoc-ui" -> "$$DIR"
-//@ normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
-//@ normalize-stdout-test ".rs:\d+:\d+" -> ".rs:$$LINE:$$COL"
-//@ check-pass
-
-/// ```
-/// let x = 12;
-/// ```
-///
-/// ```compile_fail
-/// let y = x;
-/// ```
-pub fn one() {}