]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-js-std/path-ordering.js
Rollup merge of #107769 - compiler-errors:pointer-like, r=eholk
[rust.git] / tests / rustdoc-js-std / path-ordering.js
1 const QUERY = 'hashset::insert';
2
3 const EXPECTED = {
4     'others': [
5         // ensure hashset::insert comes first
6         { 'path': 'std::collections::hash_set::HashSet', 'name': 'insert' },
7         { 'path': 'std::collections::hash_set::HashSet', 'name': 'get_or_insert' },
8         { 'path': 'std::collections::hash_set::HashSet', 'name': 'get_or_insert_with' },
9         { 'path': 'std::collections::hash_set::HashSet', 'name': 'get_or_insert_owned' },
10         { 'path': 'std::collections::hash_map::HashMap', 'name': 'insert' },
11     ],
12 };