-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
-Clink-dead-code and -Cinstrument-coverage causes symbol already defined compiler error in nightly #137009
Comments
My end I'm also sorry I haven't investigated this sooner, I don't have a mac and there's an ever growing pile of issues so getting through things takes some concentrated effort my end |
Note that |
hmm I've tried removing it in tarpaulin but then I get no coverage data in public modules with no tested code. But I can see cargo-llvm-cov gets me results without adding link-dead-code on the same files so I'll look into that 🤔 EDIT: silly me was doing overly constrained filtering of results |
I could compile the MRE reduction on x86_64 just to exclude it from the affected platforms @rustbot label +O-macos |
Minimized further:
use std::future::Future;
use std::net::{Ipv4Addr, SocketAddr};
use tokio::net::{TcpStream};
async fn connect() {
connect2().await;
}
fn connect2() -> impl Future<Output = TcpStream> {
let addr = SocketAddr::from(("127.0.0.1".parse::<Ipv4Addr>().unwrap(), 80));
let connect = TcpStream::connect(addr);
async move {
connect.await.unwrap()
}
} |
The above reproducer is now portable. Still not minimal. |
This is also not a linkage issue, this is an issue in how eager monomorphization works |
Regression points to #135149 cc @compiler-errors |
lamo what |
We still get an error if you use |
Minimal, reproducible with fn opaque() -> impl Sized {}
fn test() -> impl FnOnce() {
let opaque = opaque();
move || {
let opaque = opaque;
}
}
fn main() {
test()();
} I'll put up a fix soon. Doesn't have to do with async/await (un)luckily. Sorry for sniping the issue. |
Rollup merge of rust-lang#137035 - compiler-errors:eagerly-mono-closures-after-norm, r=saethlin Normalize closure instance before eagerly monomorphizing it We were monomorphizing two versions of the closure (or in the original issue, coroutine) -- one with normalized captures and one with unnormalized captures. This led to a symbol collision. Fixes rust-lang#137009 r? `@saethlin` or reassign
thanks @saethlin and @compiler-errors ! :) |
Code
With just the following cargo.toml
and a
main.rs
with the default contents. RunningResults in:
I've done a bit of work to narrow this down. So either of the flags on their own is fine, it's just the combination that causes the issue.,
I also have a MRE reproduction repo here: https://github.com/xd009642/debug-tarp-issue
Version with regression
So because this happened in a CI job for tarpaulin and we have some flaky tests and I don't use a mac myself I don't have an exact version. But this first occurred in our CI January 13th 2025. This is evident because the mac nightly builds have failed from that date until now. Mac stable and beta still work fine.
The text was updated successfully, but these errors were encountered: