diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-09-10 18:56:07 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-10 18:56:07 +0530 |
| commit | 2386ed99628972bebdf85ea1dbc1d1f41b442111 (patch) | |
| tree | 59553ec15eec7ce9dcc2ab6162fdbecf2854274d /src/test | |
| parent | 5197c96c49fc3b7de3ce9a31f7cc62d2cbd1f70c (diff) | |
| parent | c63020a7c3e624f610f1f402a44a0db92bd21a88 (diff) | |
| download | rust-2386ed99628972bebdf85ea1dbc1d1f41b442111.tar.gz rust-2386ed99628972bebdf85ea1dbc1d1f41b442111.zip | |
Rollup merge of #101578 - lcnr:resolve-hack, r=jackh726
remove bound var hack in `resolve` somehow dropped that change from #98900. r? `@jackh726`
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/const-generics/issues/issue-83765.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/const-generics/issues/issue-83765.stderr b/src/test/ui/const-generics/issues/issue-83765.stderr index 28ddddf1be6..d5f914f46f8 100644 --- a/src/test/ui/const-generics/issues/issue-83765.stderr +++ b/src/test/ui/const-generics/issues/issue-83765.stderr @@ -4,13 +4,13 @@ error[E0391]: cycle detected when resolving instance `<LazyUpdim<T, { T::DIM }, LL | const DIM: usize; | ^^^^^^^^^^^^^^^^ | -note: ...which requires checking if `TensorDimension` fulfills its obligations... +note: ...which requires computing candidate for `<LazyUpdim<T, { T::DIM }, DIM> as TensorDimension>`... --> $DIR/issue-83765.rs:4:1 | LL | trait TensorDimension { | ^^^^^^^^^^^^^^^^^^^^^ = note: ...which again requires resolving instance `<LazyUpdim<T, { T::DIM }, DIM> as TensorDimension>::DIM`, completing the cycle -note: cycle used when checking if `TensorDimension` fulfills its obligations +note: cycle used when computing candidate for `<LazyUpdim<T, { T::DIM }, DIM> as TensorDimension>` --> $DIR/issue-83765.rs:4:1 | LL | trait TensorDimension { |
