fix query description
This commit is contained in:
parent
0b32cf3a8d
commit
84bcd40927
1 changed files with 2 additions and 2 deletions
|
@ -1662,14 +1662,14 @@ rustc_queries! {
|
||||||
query try_normalize_generic_arg_after_erasing_regions(
|
query try_normalize_generic_arg_after_erasing_regions(
|
||||||
goal: ParamEnvAnd<'tcx, GenericArg<'tcx>>
|
goal: ParamEnvAnd<'tcx, GenericArg<'tcx>>
|
||||||
) -> Result<GenericArg<'tcx>, NoSolution> {
|
) -> Result<GenericArg<'tcx>, NoSolution> {
|
||||||
desc { "trying to normalize `{}`", goal.value }
|
desc { "normalizing `{}`", goal.value }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
|
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
|
||||||
query try_normalize_mir_const_after_erasing_regions(
|
query try_normalize_mir_const_after_erasing_regions(
|
||||||
goal: ParamEnvAnd<'tcx, mir::ConstantKind<'tcx>>
|
goal: ParamEnvAnd<'tcx, mir::ConstantKind<'tcx>>
|
||||||
) -> Result<mir::ConstantKind<'tcx>, NoSolution> {
|
) -> Result<mir::ConstantKind<'tcx>, NoSolution> {
|
||||||
desc { "trying to normalize `{}`", goal.value }
|
desc { "normalizing `{}`", goal.value }
|
||||||
}
|
}
|
||||||
|
|
||||||
query implied_outlives_bounds(
|
query implied_outlives_bounds(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue