diff options
| author | Matthew Jasper <mjjasper1@gmail.com> | 2020-07-23 21:59:20 +0100 |
|---|---|---|
| committer | Matthew Jasper <mjjasper1@gmail.com> | 2020-10-06 11:19:31 +0100 |
| commit | cfee49593d756bb97018d1d2ac194e0821d2dfca (patch) | |
| tree | 6b93b9dc025cbf3275b384cc52fcd39d250ad3dd /compiler/rustc_middle/src/query | |
| parent | bc08b791bce1c5b31052da5dfda74302b6f61a99 (diff) | |
| download | rust-cfee49593d756bb97018d1d2ac194e0821d2dfca.tar.gz rust-cfee49593d756bb97018d1d2ac194e0821d2dfca.zip | |
Handle multiple applicable projection candidates
Diffstat (limited to 'compiler/rustc_middle/src/query')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index 240f2c0792c..fc4c343372a 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -157,7 +157,7 @@ rustc_queries! { } /// Returns the list of bounds that can be used for - /// `SelectionCandidate::ProjectionCandidate` and + /// `SelectionCandidate::ProjectionCandidate(_)` and /// `ProjectionTyCandidate::TraitDef`. /// Specifically this is the bounds written on the trait's type /// definition, or those after the `impl` keyword |
