about summary refs log tree commit diff
path: root/tests/rustdoc-js-std/never.js
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-06-12 14:56:54 -0700
committerMichael Howell <michael@notriddle.com>2023-06-12 17:30:23 -0700
commitdb277f528407864e24d3d7934d9c23e28d950165 (patch)
tree27f6edb2a3b0e81f6e3265af83b2cd19ba4993fe /tests/rustdoc-js-std/never.js
parentdf77afbcaf3365a32066a8ca4a00ae6fc9a69647 (diff)
downloadrust-db277f528407864e24d3d7934d9c23e28d950165.tar.gz
rust-db277f528407864e24d3d7934d9c23e28d950165.zip
rustdoc-search: search never type with `!`
This feature extends rustdoc to support the syntax that most users will
naturally attempt to use to search for diverging functions.
Part of #60485

It's already possible to do this search with `primitive:never`, but
that's not what the Rust language itself uses, so nobody will try it if
they aren't told or helped along.
Diffstat (limited to 'tests/rustdoc-js-std/never.js')
-rw-r--r--tests/rustdoc-js-std/never.js20
1 files changed, 14 insertions, 6 deletions
diff --git a/tests/rustdoc-js-std/never.js b/tests/rustdoc-js-std/never.js
index ed3776b3c2a..27d415b5e48 100644
--- a/tests/rustdoc-js-std/never.js
+++ b/tests/rustdoc-js-std/never.js
@@ -1,6 +1,14 @@
-const EXPECTED = {
-    'query': '!',
-    'others': [
-        { 'path': 'std', 'name': 'never' },
-    ],
-};
+const EXPECTED = [
+    {
+        'query': '!',
+        'others': [
+            { 'path': 'std', 'name': 'never' },
+        ],
+    },
+    {
+        'query': '!::clone',
+        'others': [
+            { 'path': 'std::never', 'name': 'clone' },
+        ],
+    },
+];