1
Fork 0

add links to query documentation for E0391

This commit is contained in:
nxya 2023-07-12 10:18:30 -04:00
parent 5f68a5d204
commit f92a9f6808
48 changed files with 56 additions and 55 deletions

View file

@ -1,4 +1,4 @@
error[E0391]: cycle detected when expanding type alias `Bar`
error[E0391]: cycle detected when expanding type alias `Bar`. see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information.
--> $DIR/issue-110629-private-type-cycle-dyn.rs:1:38
|
LL | type Bar<'a, 'b> = Box<dyn PartialEq<Bar<'a, 'b>>>;