summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/test-lists.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/rustdoc/test-lists.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/rustdoc/test-lists.rs')
-rw-r--r--src/test/rustdoc/test-lists.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/rustdoc/test-lists.rs b/src/test/rustdoc/test-lists.rs
deleted file mode 100644
index 6a510b9ac..000000000
--- a/src/test/rustdoc/test-lists.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-#![crate_name = "foo"]
-
-// @has foo/fn.f.html
-// @has - //ol/li "list"
-// @has - //ol/li/ol/li "fooooo"
-// @has - //ol/li/ol/li "x"
-// @has - //ol/li "foo"
-/// 1. list
-/// 1. fooooo
-/// 2. x
-/// 2. foo
-pub fn f() {}
-
-// @has foo/fn.foo2.html
-// @has - //ul/li "normal list"
-// @has - //ul/li/ul/li "sub list"
-// @has - //ul/li/ul/li "new elem still same elem and again same elem!"
-// @has - //ul/li "new big elem"
-/// * normal list
-/// * sub list
-/// * new elem
-/// still same elem
-///
-/// and again same elem!
-/// * new big elem
-pub fn foo2() {}