diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-03-04 20:48:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-04 20:48:18 +0100 |
| commit | 9cabc40ab1dd3b170728be47e47455b1aa620f9b (patch) | |
| tree | 82f98ab5a532bd7bfeeecae0d16a32b671335eb8 /tests/rustdoc-js-std | |
| parent | dd6f03de9a5c26851b623f0eb4723ba99df38822 (diff) | |
| parent | 9d27028391c2e0fcb72527f2bc3aa4107d123a87 (diff) | |
| download | rust-9cabc40ab1dd3b170728be47e47455b1aa620f9b.tar.gz rust-9cabc40ab1dd3b170728be47e47455b1aa620f9b.zip | |
Rollup merge of #108723 - notriddle:notriddle/where-clause, r=GuillaumeGomez
rustdoc: function signature search with traits in `where` clause ## Before  ## After 
Diffstat (limited to 'tests/rustdoc-js-std')
| -rw-r--r-- | tests/rustdoc-js-std/option-type-signatures.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/rustdoc-js-std/option-type-signatures.js b/tests/rustdoc-js-std/option-type-signatures.js new file mode 100644 index 00000000000..dee4819e81a --- /dev/null +++ b/tests/rustdoc-js-std/option-type-signatures.js @@ -0,0 +1,7 @@ +const QUERY = 'option, fnonce -> option'; + +const EXPECTED = { + 'others': [ + { 'path': 'std::option::Option', 'name': 'map' }, + ], +}; |
