We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6315267 commit 3b0d3f2Copy full SHA for 3b0d3f2
src/query.md
@@ -47,6 +47,9 @@ let ty = tcx.type_of(some_def_id);
47
48
### Cycles between queries
49
50
+A cycle is when a query becomes stuck in a loop e.g. query A generates query B
51
+which generates query A again.
52
+
53
Currently, cycles during query execution should always result in a
54
compilation error. Typically, they arise because of illegal programs
55
that contain cyclic references they shouldn't (though sometimes they
0 commit comments