You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extract_RustTraitAssociatedTypeDefaults_RecordsPropertySymbols fails because Rust trait declarations are indexed as protocol symbols, while the associated type default post-pass only scans interface containers.
Evidence
PR Fix HTML class reference extraction #2599 CI failed on build (ubuntu-latest, net9.0) with CodeIndex.Tests.SymbolExtractorTests.Extract_RustTraitAssociatedTypeDefaults_RecordsPropertySymbols.
The same failure reproduced locally when running dotnet test tests/CodeIndex.Tests/CodeIndex.Tests.csproj --filter FullyQualifiedName~SymbolExtractorTests after merging current origin/main.
Expected
Rust trait associated type defaults such as type Output = (); and type Error: std::error::Error = String; should be emitted as property symbols under the trait container.
Summary
Extract_RustTraitAssociatedTypeDefaults_RecordsPropertySymbolsfails because Rusttraitdeclarations are indexed asprotocolsymbols, while the associated type default post-pass only scansinterfacecontainers.Evidence
build (ubuntu-latest, net9.0)withCodeIndex.Tests.SymbolExtractorTests.Extract_RustTraitAssociatedTypeDefaults_RecordsPropertySymbols.dotnet test tests/CodeIndex.Tests/CodeIndex.Tests.csproj --filter FullyQualifiedName~SymbolExtractorTestsafter merging currentorigin/main.Expected
Rust trait associated type defaults such as
type Output = ();andtype Error: std::error::Error = String;should be emitted as property symbols under the trait container.