PowerPC test failures due to "similarly named associated type" #126260
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
A-testsuite
Area: The testsuite used to check the correctness of rustc
C-bug
Category: This is a bug.
O-PowerPC
Target: PowerPC processors
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.
There are a number of tests that fail on PowerPC, because the emit an additional "there is a similarly named associated type" note. This happens for tests where an unknown single-character associated type is used.
The reason this only happens on PowerPC is, apparently, that
core::core_arch::powerpc::altivec::sealed::VectorRl
happens to define a single-character associated type, which is considered "similar" to any other single character type.I'm not sure what the best fix for this is -- adjust tests to use longer names? Adjust VectorRl::B to use a longer name? Make the note less aggressive?
The text was updated successfully, but these errors were encountered: