about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-80233-normalize-auto-trait.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-37/+0
2022-09-25rustdoc: update test cases now that code-header is used without in-bandMichael Howell-1/+1
2021-07-25Rustdoc accessibility: use real headers for doc itemsbors-1/+1
Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html
2020-12-20Don't try to add nested predicate to Rustdoc auto-trait `ParamEnv`Aaron Hill-0/+37
Fixes #80233 We already have logic in `evaluate_predicates` that tries to add unimplemented predicates to our `ParamEnv`. Trying to add a predicate that already holds can lead to errors later on, since projection will prefer trait candidates from the `ParamEnv` to predicates from an impl.