Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 9 pull requests #120249

Closed
wants to merge 26 commits into from

Conversation

matthiaskrgr
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

taiki-e and others added 26 commits January 8, 2024 00:36
Removing opener 0.5.2, and updating cargo_metadata 0.15.4 -> cargo_metadata 0.18.0

Reverting rustfmt change

Reverting rustfmt patch

Reverting dependency change for clippy
rc,sync: Do not create references to uninitialized values

Closes rust-lang#119241

r? `@RalfJung`
…wiser

coverage: Never emit improperly-ordered coverage regions

If we emit a coverage region that is improperly ordered (end < start), `llvm-cov` will fail with `coveragemap_error::malformed`, which is inconvenient for users and also very hard to debug.

Ideally we would fix the root causes of these situations, but they tend to occur in very obscure edge-case scenarios (often involving nested macros), and we don't always have a good MCVE to work from. So it makes sense to also have a catch-all check that will prevent improperly-ordered regions from ever being emitted.

---

This is mainly aimed at resolving rust-lang#119453. We don't have a specific way to reproduce it, which is why I haven't been able to add a test case in this PR. But based on the information provided in that issue, this change seems likely to avoid the error in `llvm-cov`.

`@rustbot` label +A-code-coverage
…mpiler-errors

Split tait and impl trait in assoc items logic

And simplify the assoc item logic where applicable.

This separation shows that it is easier to reason about impl trait in assoc items compared with TAITs. See https://rust-lang.zulipchat.com/#narrow/stream/315482-t-compiler.2Fetc.2Fopaque-types/topic/impl.20trait.20in.20associated.20type for some discussion.

The current plan is to try to stabilize impl trait in associated items before TAIT, as they do not have any issues with their defining scopes (see rust-lang#107645 for why this is not a trivial or uncontroversial topic).
…lnay

Manually implement derived `NonZero` traits.

Step 3 as mentioned in rust-lang#100428 (review).

Manually implement the traits that would cause “borrow of layout constrained field with interior mutability” errors when switching to `NonZero<T>`.

r? `@dtolnay`
…trieb

Remove duplicate dependencies for rustc

Removed several duplicates for rustc: rust-lang#75704

Several duplicates still exist, but an external library would have to be updated first.

These are the duplicate dependencies still outstanding:
```
annotate-snippets v0.9.1
annotate-snippets v0.10.1

bitflags v1.3.2
bitflags v2.4.1

cargo_metadata v0.15.4
cargo_metadata v0.18.0

darling v0.14.4
darling v0.20.3

darling_core v0.14.4
darling_core v0.20.3

darling_macro v0.14.4
darling_macro v0.20.3

regex-automata v0.1.10
regex-automata v0.2.0
regex-automata v0.4.3

regex-syntax v0.6.29
regex-syntax v0.7.2
regex-syntax v0.8.2

self_cell v0.10.3
self_cell v1.0.2

syn v1.0.109
syn v2.0.32

toml v0.5.11
toml v0.7.5
```

It should not be hard to consolidate these remaining duplicate dependencies, but it will take time as it would be pull requests for external crates.

r? `@jyn514`
…errors

Add `#[coverage(off)]` to closures introduced by `#[test]` and `#[bench]`

These closures are an internal implementation detail of the `#[test]` and `#[bench]` attribute macros, so from a user perspective there is no reason to instrument them for coverage.

Skipping them makes coverage reports slightly cleaner, and will also allow other changes to span processing during coverage instrumentation, without having to worry about how they affect the `#[test]` macro.

The `#[coverage(off)]` attribute has no effect when `-Cinstrument-coverage` is not used.

Fixes rust-lang#120046.

---

Note that this PR has no effect on the user-written function that has the `#[test]` attribute attached to it. That function will still be instrumented as normal.
coverage: Don't instrument `#[automatically_derived]` functions

This PR makes the coverage instrumentor detect and skip functions that have [`#[automatically_derived]`](https://doc.rust-lang.org/reference/attributes/derive.html#the-automatically_derived-attribute) on their enclosing impl block.

Most notably, this means that methods generated by built-in derives (e.g. `Clone`, `Debug`, `PartialEq`) are now ignored by coverage instrumentation, and won't appear as executed or not-executed in coverage reports.

This is a noticeable change in user-visible behaviour, but overall I think it's a net improvement. For example, we've had a few user requests for this sort of change (e.g. rust-lang#105055, rust-lang#84605 (comment)), and I believe it's the behaviour that most users will expect/prefer by default.

It's possible to imagine situations where users would want to instrument these derived implementations, but I think it's OK to treat that as an opportunity to consider adding more fine-grained option flags to control the details of coverage instrumentation, while leaving this new behaviour as the default.

(Also note that while `-Cinstrument-coverage` is a stable feature, the exact details of coverage instrumentation are allowed to change. So we *can* make this change; the main question is whether we *should*.)

Fixes rust-lang#105055.
Bump some deps with syn 1.0 dependencies

cc rust-lang#109302

`cargo update`ing `unic-langid` and `object` removes two dependencies on Syn 1.0.
…estebank

Re-add estebank to review rotation

r? `@compiler-errors`
@rustbot rustbot added A-meta Area: Issues about the rust-lang/rust repository. A-testsuite Area: The testsuite used to check the correctness of rustc S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) labels Jan 22, 2024
@rustbot rustbot added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Jan 22, 2024
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=9

@bors
Copy link
Contributor

bors commented Jan 22, 2024

📌 Commit f341954 has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 22, 2024
@bors
Copy link
Contributor

bors commented Jan 22, 2024

⌛ Testing commit f341954 with merge 8cf20db...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jan 22, 2024
…iaskrgr

Rollup of 9 pull requests

Successful merges:

 - rust-lang#119433 (rc,sync: Do not create references to uninitialized values)
 - rust-lang#119460 (coverage: Never emit improperly-ordered coverage regions)
 - rust-lang#119766 (Split tait and impl trait in assoc items logic)
 - rust-lang#120160 (Manually implement derived `NonZero` traits.)
 - rust-lang#120177 (Remove duplicate dependencies for rustc)
 - rust-lang#120183 (Add `#[coverage(off)]` to closures introduced by `#[test]` and `#[bench]`)
 - rust-lang#120185 (coverage: Don't instrument `#[automatically_derived]` functions)
 - rust-lang#120201 (Bump some deps with syn 1.0 dependencies)
 - rust-lang#120246 (Re-add estebank to review rotation)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job x86_64-mingw failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
failures:

---- [ui] tests\ui\extern\issue-64655-extern-rust-must-allow-unwind.rs#thin0 stdout ----

error in revision `thin0`: test compilation failed although it shouldn't!
status: exit code: 1
command: PATH="C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage2\bin;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0-bootstrap-tools\x86_64-pc-windows-gnu\release\deps;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0\bin;C:\a\rust\rust\ninja;C:\a\rust\rust\mingw64\bin;C:\hostedtoolcache\windows\Python\3.12.1\x64\Scripts;C:\hostedtoolcache\windows\Python\3.12.1\x64;C:\msys64\usr\bin;C:\a\rust\rust\sccache;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS;C:\tools\zstd;C:\Program Files\Mercurial;C:\hostedtoolcache\windows\stack\2.13.1\x64;C:\cabal\bin;C:\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Program Files\R\R-4.3.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.20.13\x64\bin;C:\hostedtoolcache\windows\Python\3.7.9\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.9\x64;C:\hostedtoolcache\windows\Ruby\2.5.9\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.392-8\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\Program Files\Eclipse Foundation\jdk-8.0.302.8-hotspot\bin;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\PowerShell\7;C:\Program Files\Microsoft\Web Platform Installer;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\160\DTS\Binn;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.8.7\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI;C:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Amazon\SessionManagerPlugin\bin;C:\Program Files\Amazon\AWSSAMCLI\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files (x86)\Microsoft BizTalk Server;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\bin\\rustc.exe" "C:\\a\\rust\\rust\\tests\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=C:\\Users\\runneradmin\\.cargo" "--sysroot" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2" "--target=x86_64-pc-windows-gnu" "--cfg" "thin0" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.exe" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\auxiliary" "-C" "opt-level=0" "-C" "lto=thin"
--- stderr -------------------------------
--- stderr -------------------------------
error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1
   |
   = note: "x86_64-w64-mingw32-gcc" "-fno-use-linker-plugin" "-Wl,--dynamicbase" "-Wl,--disable-auto-image-base" "-m64" "-Wl,--high-entropy-va" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsbegin.o" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc82NL2t\\symbols.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.addr2line-0feb35ddf8fe4007.addr2line.791d27d8f573a289-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.adler-65fd96764d350467.adler.57e8d392ea481aad-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.alloc-671b2aa317f409e1.alloc.8a941b12d84abad1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.cfg_if-733aafd18f9c2e1f.cfg_if.adb8c1d572b8e821-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.core-36315962d2350d13.core.fe3801b68068df7d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.gimli-44704f3584b2a287.gimli.629c7bb2f01105d1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.hashbrown-63a4b27f0f62ea34.hashbrown.473da99da5af75db-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.issue_64655_extern_rust_must_allow_unwind.56e668df17fe0d16-cgu.0.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.janexv6nbuju7j4.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.libc-bc580ebd3d108d02.libc.cfd8c435e3e9aae4-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.memchr-1b33005301bfae8b.memchr.5d38ac0a385426c1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.miniz_oxide-03675b04565cead2.miniz_oxide.9035eb3b3ceec7fd-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.panic_unwind-2bd6578291ed7e71.panic_unwind.f674bc39ec93c41-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.rustc_demangle-7a60d81ab35cf473.rustc_demangle.e3a47a8bcc9e622c-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.rustc_std_workspace_alloc-16632ae935f7cd5d.rustc_std_workspace_alloc.ed177fb05011c33d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.rustc_std_workspace_core-731faf526b84c3fa.rustc_std_workspace_core.e9d44cd6427d98b2-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.std_detect-ca8cebc464eef20f.std_detect.70da21379b52effb-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.unwind-99b5d815eb4b36e0.unwind.18b7253c96801c8-cgu.0.rcgu.o.rcgu.o" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\auxiliary" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-Wl,-Bstatic" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\libcompiler_builtins-09ae3089b1762d56.rlib" "-Wl,-Bdynamic" "-lkernel32" "-ladvapi32" "-lbcrypt" "-lkernel32" "-lntdll" "-luserenv" "-lws2_32" "-lkernel32" "-lws2_32" "-lkernel32" "-lntdll" "-lkernel32" "-lgcc_eh" "-l:libpthread.a" "-lmsvcrt" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-luser32" "-lkernel32" "-Wl,--nxcompat" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.exe" "-Wl,--gc-sections" "-no-pie" "-Wl,--strip-debug" "-nodefaultlibs" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsend.o"
   = note: Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17h3b1c79e5e2e07ff0E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr37drop_in_place$LT$core..fmt..Error$GT$17hfb197e303970b043E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h6e00ca25498fe4dcE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN53_$LT$core..fmt..Error$u20$as$u20$core..fmt..Debug$GT$3fmt17h64927cca0c78e939E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..alloc..layout..LayoutError$u20$as$u20$core..fmt..Debug$GT$3fmt17h09ed2bd324eb1165E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17ha7a8e414ec05b59fE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h873c7106914a1441E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec11finish_grow17hbd11e2154e1fec40E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc6string6String4push17h518e88ff7fa806c4E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$9write_str17h3257c1bbd4365abdE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$10write_char17h2b2579febaeddb3fE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17hb1139edb254d2752E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc3vec16Vec$LT$T$C$A$GT$16into_boxed_slice17hb14c24a6d7dc5938E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.2.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.5.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.10.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.11.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.12.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.13.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.14.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.26.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.27.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.28.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.29.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.32.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.33.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.34.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.38.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.39.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.44.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.45.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.48.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.49.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.50.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.51.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.76.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.77.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.78.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.82.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.83.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.103.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.104.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.105.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.109.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.135.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.136.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.148.llvm.3448465699825434246" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce9call_once17h74d07ad1dcfc69a1E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h0869ff4cbd085944E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h9174b836293f6bd6E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..num..nonzero..NonZeroUsize$u20$as$u20$core..fmt..Debug$GT$3fmt17hd59d2b00b9535cc5E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$u32$GT$3fmt17h6fc68d502233ba6bE.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num3imp7fmt_u6417h32f2cc13f64dfb88E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN44_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$3fmt17h5374618a405b60f1E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.4.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.324.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.325.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.326.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.327.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.335.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.354.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.361.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.362.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.424.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.429.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.441.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.485.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.486.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.491.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.495.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.507.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.508.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.509.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.540.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.541.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.542.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.543.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.544.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.545.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.713.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.717.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.733.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.734.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.773.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.774.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.775.llvm.18424006273319594296" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr52drop_in_place$LT$gimli..read..abbrev..Attributes$GT$17h3be63f4a9a59fa09E.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core9panicking13assert_failed17h2935da384b9d6c7cE.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.17.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.70.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.76.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.77.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.78.llvm.17268297297280709399" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.17.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.19.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.20.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.51.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.52.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.55.llvm.1405035052626866484" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr54drop_in_place$LT$panic_unwind..real_imp..Exception$GT$17h3610dca0bce0eef1E.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN12panic_unwind8real_imp5panic17exception_cleanup17h751265ede838f68fE.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.0.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.1.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.2.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.3.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.4.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.5.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.6.llvm.6801660310354914403" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write10write_char17h271a419db71000adE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17he98df63ff00d7641E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function2Fn4call17ha54a690b9e74d436E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function5FnMut8call_mut17h48f0bc9a4bcf1a3eE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hbeaf574534d84120E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr100drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..sys..pal..windows..stdio..Stderr$GT$$GT$17hd2fdf10f4d31dea9E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr130drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$alloc..boxed..Box$LT$dyn$u20$core..any..Any$u2b$core..marker..Send$GT$$GT$$GT$17h650306d33dbd427bE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr131drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$u2b$Output$u20$$u3d$$u20$$LP$$RP$$GT$$GT$17hc6aecc2588cb248cE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr29drop_in_place$LT$$LP$$RP$$GT$17h44984caaec7b5186E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h8789e2862875ddceE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17had488dee2a5e0723E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17h8aa40cf1e11a6b9dE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr9alignment9Alignment13new_unchecked17he19e2ebfdb785b4aE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17h2e2105b8d4cb51adE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17hd9f1c0c687737b75E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h459a60eb9841fe59E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked4Repr6new_os17hcfef3228443b7a7dE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked11decode_repr17h0007f01b87897c3cE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17he58a431b12bf6600E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common9backtrace26__rust_end_short_backtrace17hded3ed0411039c4eE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc24default_alloc_error_hook17hbff8b521dec9d858E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows5stdio5write17h3f36a84e8d519608E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows7to_u16s5inner17h8a7a23c852c1125cE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std9panicking11panic_count17LOCAL_PANIC_COUNT7__getit17h58a5d81c9bfa6e83E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common11thread_info11THREAD_INFO7__getit17h303148433fe76417E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio14OUTPUT_CAPTURE7__getit17h71330eced3a55590E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.2.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.44.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.45.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.46.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.58.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.59.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.60.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.62.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.63.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.64.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.65.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.115.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.177.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.405.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.454.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.455.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.456.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.457.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.599.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.601.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.602.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.603.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.607.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.608.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.609.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.610.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio19OUTPUT_CAPTURE_USED17hb1f1768e0078c77bE.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.690.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.691.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.692.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.720.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.721.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.906.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.907.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.908.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common6thread9min_stack3MIN17h71f4820b28317ab5E.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.909.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.910.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc4HOOK17h87ff70ed74502574E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.958.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.959.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.960.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.961.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.962.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.963.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.964.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.965.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.966.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.967.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.979.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.980.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1102.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1103.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1104.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1262.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1263.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1264.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1265.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1283.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1284.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1285.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1286.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows14thread_parking18keyed_event_handle6HANDLE17h15c30c72fc36077eE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c20SetThreadDescription3PTR17h787cda781aca4a85E.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c19WakeByAddressSingle3PTR17h30bff956ffb6ffd5E.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c18NtCreateKeyedEvent3PTR17he2e5d5bc5e2760dcE.0.llvm.12990213828227731236" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: corrupt .drectve at end of def file
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-extern-rust-must-allow-unwind.thin0\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o:object.d5af9c5a234:(.text+0x9b): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-extern-rust-must-allow-unwind.thin0\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o:object.d5af9c5a234:(.text+0x818): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-extern-rust-must-allow-unwind.thin0\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o:std.de2a2bc04fd0e4:(.text+0x6ac2b): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           collect2.exe: error: ld returned 1 exit status
           
   = note: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified
   = note: use the `-l` flag to specify native libraries to link
   = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-link-lib)
error: aborting due to 1 previous error
------------------------------------------



---- [ui] tests\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.rs#thin stdout ----

error in revision `thin`: test compilation failed although it shouldn't!
status: exit code: 1
command: PATH="C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage2\bin;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0-bootstrap-tools\x86_64-pc-windows-gnu\release\deps;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0\bin;C:\a\rust\rust\ninja;C:\a\rust\rust\mingw64\bin;C:\hostedtoolcache\windows\Python\3.12.1\x64\Scripts;C:\hostedtoolcache\windows\Python\3.12.1\x64;C:\msys64\usr\bin;C:\a\rust\rust\sccache;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS;C:\tools\zstd;C:\Program Files\Mercurial;C:\hostedtoolcache\windows\stack\2.13.1\x64;C:\cabal\bin;C:\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Program Files\R\R-4.3.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.20.13\x64\bin;C:\hostedtoolcache\windows\Python\3.7.9\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.9\x64;C:\hostedtoolcache\windows\Ruby\2.5.9\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.392-8\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\Program Files\Eclipse Foundation\jdk-8.0.302.8-hotspot\bin;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\PowerShell\7;C:\Program Files\Microsoft\Web Platform Installer;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\160\DTS\Binn;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.8.7\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI;C:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Amazon\SessionManagerPlugin\bin;C:\Program Files\Amazon\AWSSAMCLI\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files (x86)\Microsoft BizTalk Server;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\bin\\rustc.exe" "C:\\a\\rust\\rust\\tests\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=C:\\Users\\runneradmin\\.cargo" "--sysroot" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2" "--target=x86_64-pc-windows-gnu" "--cfg" "thin" "-O" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.exe" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\auxiliary" "-C" "lto=thin"
--- stderr -------------------------------
--- stderr -------------------------------
error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1
   |
   = note: "x86_64-w64-mingw32-gcc" "-fno-use-linker-plugin" "-Wl,--dynamicbase" "-Wl,--disable-auto-image-base" "-m64" "-Wl,--high-entropy-va" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsbegin.o" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcxwYgF1\\symbols.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.2q7kln9uon29stz8.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.addr2line-0feb35ddf8fe4007.addr2line.791d27d8f573a289-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.adler-65fd96764d350467.adler.57e8d392ea481aad-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.alloc-671b2aa317f409e1.alloc.8a941b12d84abad1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.cfg_if-733aafd18f9c2e1f.cfg_if.adb8c1d572b8e821-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.core-36315962d2350d13.core.fe3801b68068df7d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.gimli-44704f3584b2a287.gimli.629c7bb2f01105d1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.hashbrown-63a4b27f0f62ea34.hashbrown.473da99da5af75db-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.issue_64655_allow_unwind_when_calling_panic_directly.41846d3f0a9343bd-cgu.0.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.libc-bc580ebd3d108d02.libc.cfd8c435e3e9aae4-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.memchr-1b33005301bfae8b.memchr.5d38ac0a385426c1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.miniz_oxide-03675b04565cead2.miniz_oxide.9035eb3b3ceec7fd-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.panic_unwind-2bd6578291ed7e71.panic_unwind.f674bc39ec93c41-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.rustc_demangle-7a60d81ab35cf473.rustc_demangle.e3a47a8bcc9e622c-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.rustc_std_workspace_alloc-16632ae935f7cd5d.rustc_std_workspace_alloc.ed177fb05011c33d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.rustc_std_workspace_core-731faf526b84c3fa.rustc_std_workspace_core.e9d44cd6427d98b2-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.std_detect-ca8cebc464eef20f.std_detect.70da21379b52effb-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.unwind-99b5d815eb4b36e0.unwind.18b7253c96801c8-cgu.0.rcgu.o.rcgu.o" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\auxiliary" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-Wl,-Bstatic" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\libcompiler_builtins-09ae3089b1762d56.rlib" "-Wl,-Bdynamic" "-lkernel32" "-ladvapi32" "-lbcrypt" "-lkernel32" "-lntdll" "-luserenv" "-lws2_32" "-lkernel32" "-lws2_32" "-lkernel32" "-lntdll" "-lkernel32" "-lgcc_eh" "-l:libpthread.a" "-lmsvcrt" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-luser32" "-lkernel32" "-Wl,--nxcompat" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.exe" "-Wl,--gc-sections" "-no-pie" "-Wl,-O1" "-Wl,--strip-debug" "-nodefaultlibs" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsend.o"
   = note: Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17h3b1c79e5e2e07ff0E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr37drop_in_place$LT$core..fmt..Error$GT$17hfb197e303970b043E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h6e00ca25498fe4dcE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN53_$LT$core..fmt..Error$u20$as$u20$core..fmt..Debug$GT$3fmt17h64927cca0c78e939E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..alloc..layout..LayoutError$u20$as$u20$core..fmt..Debug$GT$3fmt17h09ed2bd324eb1165E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17ha7a8e414ec05b59fE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc6string6String4push17h518e88ff7fa806c4E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$9write_str17h3257c1bbd4365abdE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$10write_char17h2b2579febaeddb3fE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17hb1139edb254d2752E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.2.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.5.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.10.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.11.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.12.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.13.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.14.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.26.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.27.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.28.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.29.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.32.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.33.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.34.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.38.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.39.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.44.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.45.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.76.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.77.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.78.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.82.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.83.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.103.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.104.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.105.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.109.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.135.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.136.llvm.3448465699825434246" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce9call_once17h74d07ad1dcfc69a1E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h0869ff4cbd085944E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h9174b836293f6bd6E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..num..nonzero..NonZeroUsize$u20$as$u20$core..fmt..Debug$GT$3fmt17hd59d2b00b9535cc5E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$u32$GT$3fmt17h6fc68d502233ba6bE.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num3imp7fmt_u6417h32f2cc13f64dfb88E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN44_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$3fmt17h5374618a405b60f1E.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.4.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.324.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.325.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.326.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.327.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.335.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.354.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.361.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.362.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.424.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.429.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.441.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.485.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.486.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.491.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.495.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.507.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.508.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.509.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.540.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.541.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.542.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.543.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.544.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.545.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.713.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.717.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.733.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.734.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.773.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.774.llvm.18424006273319594296" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10be683cc4389deb11e177474c416ba4.775.llvm.18424006273319594296" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr52drop_in_place$LT$gimli..read..abbrev..Attributes$GT$17h3be63f4a9a59fa09E.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core9panicking13assert_failed17h2935da384b9d6c7cE.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.17.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.70.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.76.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.77.llvm.17268297297280709399" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.9586734a56c786768a093cbbecefa5b7.78.llvm.17268297297280709399" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.17.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.19.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.20.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.51.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.52.llvm.1405035052626866484" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.4fe13e665457108a7964d32e10fb41d2.55.llvm.1405035052626866484" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr54drop_in_place$LT$panic_unwind..real_imp..Exception$GT$17h3610dca0bce0eef1E.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN12panic_unwind8real_imp5panic17exception_cleanup17h751265ede838f68fE.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.0.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.1.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.2.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.3.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.4.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.5.llvm.6801660310354914403" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.6.llvm.6801660310354914403" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write10write_char17h271a419db71000adE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17he98df63ff00d7641E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function2Fn4call17ha54a690b9e74d436E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function5FnMut8call_mut17h48f0bc9a4bcf1a3eE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17hbeaf574534d84120E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr100drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..sys..pal..windows..stdio..Stderr$GT$$GT$17hd2fdf10f4d31dea9E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr130drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$alloc..boxed..Box$LT$dyn$u20$core..any..Any$u2b$core..marker..Send$GT$$GT$$GT$17h650306d33dbd427bE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr131drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$u2b$Output$u20$$u3d$$u20$$LP$$RP$$GT$$GT$17hc6aecc2588cb248cE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr29drop_in_place$LT$$LP$$RP$$GT$17h44984caaec7b5186E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h8789e2862875ddceE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17had488dee2a5e0723E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17h8aa40cf1e11a6b9dE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr9alignment9Alignment13new_unchecked17he19e2ebfdb785b4aE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17h2e2105b8d4cb51adE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17hd9f1c0c687737b75E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h459a60eb9841fe59E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked4Repr6new_os17hcfef3228443b7a7dE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked11decode_repr17h0007f01b87897c3cE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17he58a431b12bf6600E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common9backtrace26__rust_end_short_backtrace17hded3ed0411039c4eE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc24default_alloc_error_hook17hbff8b521dec9d858E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows5stdio5write17h3f36a84e8d519608E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows7to_u16s5inner17h8a7a23c852c1125cE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std9panicking11panic_count17LOCAL_PANIC_COUNT7__getit17h58a5d81c9bfa6e83E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common11thread_info11THREAD_INFO7__getit17h303148433fe76417E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio14OUTPUT_CAPTURE7__getit17h71330eced3a55590E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.2.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.44.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.45.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.46.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.58.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.59.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.60.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.62.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.63.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.64.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.65.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.115.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.177.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.405.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.454.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.455.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.456.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.457.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.599.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.601.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.602.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.603.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.607.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.608.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.609.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.610.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio19OUTPUT_CAPTURE_USED17hb1f1768e0078c77bE.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.690.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.691.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.692.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.720.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.721.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.906.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.907.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.908.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common6thread9min_stack3MIN17h71f4820b28317ab5E.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.909.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.910.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc4HOOK17h87ff70ed74502574E.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.958.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.959.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.960.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.961.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.962.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.963.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.964.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.965.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.966.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.967.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.979.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.980.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1102.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1103.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1104.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1262.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1263.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1264.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1265.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1283.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1284.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1285.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.86c09908797a821b33f9c0f0a4a584ba.1286.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows14thread_parking18keyed_event_handle6HANDLE17h15c30c72fc36077eE.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c20SetThreadDescription3PTR17h787cda781aca4a85E.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c19WakeByAddressSingle3PTR17h30bff956ffb6ffd5E.0.llvm.12990213828227731236" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c18NtCreateKeyedEvent3PTR17he2e5d5bc5e2760dcE.0.llvm.12990213828227731236" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: corrupt .drectve at end of def file
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o:object.d5af9c5a234:(.text+0x49): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o:object.d5af9c5a234:(.text+0x44f): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o:std.de2a2bc04fd0e4:(.text+0x2c5ee): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o:std.de2a2bc04fd0e4:(.text+0x2c61d): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o:std.de2a2bc04fd0e4:(.text+0x2c6a4): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o:std.de2a2bc04fd0e4:(.text+0x2c84e): more undefined references to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha640bde01dbad867E' follow
           collect2.exe: error: ld returned 1 exit status
           
   = note: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified
   = note: use the `-l` flag to specify native libraries to link
   = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-link-lib)
error: aborting due to 1 previous error
------------------------------------------



---- [ui] tests\ui\extern\issue-64655-extern-rust-must-allow-unwind.rs#thin1 stdout ----

error in revision `thin1`: test compilation failed although it shouldn't!
status: exit code: 1
command: PATH="C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage2\bin;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0-bootstrap-tools\x86_64-pc-windows-gnu\release\deps;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0\bin;C:\a\rust\rust\ninja;C:\a\rust\rust\mingw64\bin;C:\hostedtoolcache\windows\Python\3.12.1\x64\Scripts;C:\hostedtoolcache\windows\Python\3.12.1\x64;C:\msys64\usr\bin;C:\a\rust\rust\sccache;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS;C:\tools\zstd;C:\Program Files\Mercurial;C:\hostedtoolcache\windows\stack\2.13.1\x64;C:\cabal\bin;C:\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Program Files\R\R-4.3.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.20.13\x64\bin;C:\hostedtoolcache\windows\Python\3.7.9\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.9\x64;C:\hostedtoolcache\windows\Ruby\2.5.9\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.392-8\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\Program Files\Eclipse Foundation\jdk-8.0.302.8-hotspot\bin;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\PowerShell\7;C:\Program Files\Microsoft\Web Platform Installer;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\160\DTS\Binn;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.8.7\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI;C:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Amazon\SessionManagerPlugin\bin;C:\Program Files\Amazon\AWSSAMCLI\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files (x86)\Microsoft BizTalk Server;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\bin\\rustc.exe" "C:\\a\\rust\\rust\\tests\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=C:\\Users\\runneradmin\\.cargo" "--sysroot" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2" "--target=x86_64-pc-windows-gnu" "--cfg" "thin1" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.exe" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\auxiliary" "-C" "opt-level=1" "-C" "lto=thin"
--- stderr -------------------------------
--- stderr -------------------------------
error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1
   |
   = note: "x86_64-w64-mingw32-gcc" "-fno-use-linker-plugin" "-Wl,--dynamicbase" "-Wl,--disable-auto-image-base" "-m64" "-Wl,--high-entropy-va" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsbegin.o" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQW54Sa\\symbols.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.addr2line-0feb35ddf8fe4007.addr2line.791d27d8f573a289-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.adler-65fd96764d350467.adler.57e8d392ea481aad-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.alloc-671b2aa317f409e1.alloc.8a941b12d84abad1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.cfg_if-733aafd18f9c2e1f.cfg_if.adb8c1d572b8e821-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.core-36315962d2350d13.core.fe3801b68068df7d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.gimli-44704f3584b2a287.gimli.629c7bb2f01105d1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.hashbrown-63a4b27f0f62ea34.hashbrown.473da99da5af75db-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.issue_64655_extern_rust_must_allow_unwind.56e668df17fe0d16-cgu.0.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.janexv6nbuju7j4.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.libc-bc580ebd3d108d02.libc.cfd8c435e3e9aae4-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.memchr-1b33005301bfae8b.memchr.5d38ac0a385426c1-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.miniz_oxide-03675b04565cead2.miniz_oxide.9035eb3b3ceec7fd-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.object-b0211d7f110be572.object.d5af9c5a23427b21-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.panic_unwind-2bd6578291ed7e71.panic_unwind.f674bc39ec93c41-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.rustc_demangle-7a60d81ab35cf473.rustc_demangle.e3a47a8bcc9e622c-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.rustc_std_workspace_alloc-16632ae935f7cd5d.rustc_std_workspace_alloc.ed177fb05011c33d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.rustc_std_workspace_core-731faf526b84c3fa.rustc_std_workspace_core.e9d44cd6427d98b2-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.std-9330eb6bebc3439a.std.de2a2bc04fd0e4ef-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.std_detect-ca8cebc464eef20f.std_detect.70da21379b52effb-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.unwind-99b5d815eb4b36e0.unwind.18b7253c96801c8-cgu.0.rcgu.o.rcgu.o" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\auxiliary" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-Wl,-Bstatic" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\libcompiler_builtins-09ae3089b1762d56.rlib" "-Wl,-Bdynamic" "-lkernel32" "-ladvapi32" "-lbcrypt" "-lkernel32" "-lntdll" "-luserenv" "-lws2_32" "-lkernel32" "-lws2_32" "-lkernel32" "-lntdll" "-lkernel32" "-lgcc_eh" "-l:libpthread.a" "-lmsvcrt" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-luser32" "-lkernel32" "-Wl,--nxcompat" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.exe" "-Wl,--gc-sections" "-no-pie" "-Wl,--strip-debug" "-nodefaultlibs" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsend.o"
   = note: Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17h3b1c79e5e2e07ff0E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr37drop_in_place$LT$core..fmt..Error$GT$17hfb197e303970b043E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h6e00ca25498fe4dcE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN53_$LT$core..fmt..Error$u20$as$u20$core..fmt..Debug$GT$3fmt17h64927cca0c78e939E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..alloc..layout..LayoutError$u20$as$u20$core..fmt..Debug$GT$3fmt17h09ed2bd324eb1165E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17ha7a8e414ec05b59fE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc6string6String4push17h518e88ff7fa806c4E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$9write_str17h3257c1bbd4365abdE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$10write_char17h2b2579febaeddb3fE.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17hb1139edb254d2752E.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.2.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.5.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.10.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.11.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.12.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.13.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.14.llvm.3448465699825434246" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.3aaf2c7ad04c37f2e159fe9fc89e63f7.26.llvm.3448465699825434246" ' unrecognized

@bors
Copy link
Contributor

bors commented Jan 22, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jan 22, 2024
@fmease
Copy link
Member

fmease commented Jan 23, 2024

Gosh, I have no idea which PR caused this failure. The same failure occurred in rollup #120271.

@fmease
Copy link
Member

fmease commented Jan 23, 2024

#120177 (comment)

@fmease fmease closed this Jan 23, 2024
@matthiaskrgr matthiaskrgr deleted the rollup-h646lvq branch March 16, 2024 18:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-meta Area: Issues about the rust-lang/rust repository. A-testsuite Area: The testsuite used to check the correctness of rustc rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.