Skip to content

Commit

Permalink
move folder
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnr committed Mar 11, 2024
1 parent 08c0326 commit 0afbf75
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/tools/tidy/src/issues.txt
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,6 @@
"ui/coroutine/issue-91477.rs",
"ui/coroutine/issue-93161.rs",
"ui/cross-crate/issue-64872/issue-64872.rs",
"ui/cycle-trait/issue-12511.rs",
"ui/debuginfo/issue-105386-debuginfo-ub.rs",
"ui/deprecation/issue-66340-deprecated-attr-non-meta-grammar.rs",
"ui/deprecation/issue-84637-deprecated-associated-function.rs",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
error[E0391]: cycle detected when computing the super predicates of `T1`
--> $DIR/issue-12511.rs:1:12
--> $DIR/super-trait-issue-12511.rs:1:12
|
LL | trait T1 : T2 {
| ^^
|
note: ...which requires computing the super predicates of `T2`...
--> $DIR/issue-12511.rs:5:12
--> $DIR/super-trait-issue-12511.rs:5:12
|
LL | trait T2 : T1 {
| ^^
= note: ...which again requires computing the super predicates of `T1`, completing the cycle
note: cycle used when checking that `T1` is well-formed
--> $DIR/issue-12511.rs:1:1
--> $DIR/super-trait-issue-12511.rs:1:1
|
LL | / trait T1 : T2 {
LL | |
Expand Down

0 comments on commit 0afbf75

Please sign in to comment.