diff options
| author | Michael Howell <michael@notriddle.com> | 2022-05-09 17:50:39 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2022-05-09 17:50:39 -0700 |
| commit | bb4ecc3fd8d0d8c0fa490feba294e300185862e6 (patch) | |
| tree | 7f29f41d492e60399f94094e1fb720aa807eb92d /src/test/rustdoc-js-std | |
| parent | cb390735b03aa44229ff2858be8fedbd7b0ce7cb (diff) | |
| download | rust-bb4ecc3fd8d0d8c0fa490feba294e300185862e6.tar.gz rust-bb4ecc3fd8d0d8c0fa490feba294e300185862e6.zip | |
rustdoc: correct path to type alias methods
Diffstat (limited to 'src/test/rustdoc-js-std')
| -rw-r--r-- | src/test/rustdoc-js-std/asrawfd.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/rustdoc-js-std/asrawfd.js b/src/test/rustdoc-js-std/asrawfd.js new file mode 100644 index 00000000000..37168fc4937 --- /dev/null +++ b/src/test/rustdoc-js-std/asrawfd.js @@ -0,0 +1,14 @@ +// exact-match + +const QUERY = 'RawFd::as_raw_fd'; + +const EXPECTED = { + 'others': [ + // Reproduction test for https://github.com/rust-lang/rust/issues/78724 + // Validate that type alias methods get the correct path. + { 'path': 'std::os::unix::io::AsRawFd', 'name': 'as_raw_fd' }, + { 'path': 'std::os::wasi::io::AsRawFd', 'name': 'as_raw_fd' }, + { 'path': 'std::os::linux::process::PidFd', 'name': 'as_raw_fd' }, + { 'path': 'std::os::unix::io::RawFd', 'name': 'as_raw_fd' }, + ], +}; |
