diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:50 +0000 |
commit | 9835e2ae736235810b4ea1c162ca5e65c547e770 (patch) | |
tree | 3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/object/tests/read | |
parent | Releasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff) | |
download | rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip |
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/object/tests/read')
-rw-r--r-- | vendor/object/tests/read/coff.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/object/tests/read/coff.rs b/vendor/object/tests/read/coff.rs index 3e61ec284..dcf3b3c6a 100644 --- a/vendor/object/tests/read/coff.rs +++ b/vendor/object/tests/read/coff.rs @@ -8,7 +8,7 @@ fn coff_extended_relocations() { let path_to_obj: PathBuf = ["testfiles", "coff", "relocs_overflow.o"].iter().collect(); let contents = fs::read(&path_to_obj).expect("Could not read relocs_overflow.o"); let file = - read::coff::CoffFile::parse(&contents[..]).expect("Could not parse relocs_overflow.o"); + read::coff::CoffFile::<_>::parse(&contents[..]).expect("Could not parse relocs_overflow.o"); let code_section = file .section_by_name(".text") .expect("Could not find .text section in relocs_overflow.o"); |