2022-05-10 16:42:48 -07:00
|
|
|
// ignore-order
|
2022-05-09 17:50:39 -07:00
|
|
|
|
|
|
|
const EXPECTED = {
|
2023-06-09 16:49:38 +02:00
|
|
|
'query': 'RawFd::as_raw_fd',
|
2022-05-09 17:50:39 -07:00
|
|
|
'others': [
|
|
|
|
// Reproduction test for https://github.com/rust-lang/rust/issues/78724
|
|
|
|
// Validate that type alias methods get the correct path.
|
2022-06-21 21:09:20 -07:00
|
|
|
{ 'path': 'std::os::fd::AsRawFd', 'name': 'as_raw_fd' },
|
|
|
|
{ 'path': 'std::os::fd::AsRawFd', 'name': 'as_raw_fd' },
|
2022-05-09 17:50:39 -07:00
|
|
|
{ 'path': 'std::os::linux::process::PidFd', 'name': 'as_raw_fd' },
|
2022-06-21 21:09:20 -07:00
|
|
|
{ 'path': 'std::os::fd::RawFd', 'name': 'as_raw_fd' },
|
2022-05-09 17:50:39 -07:00
|
|
|
],
|
|
|
|
};
|