]> git.lizzy.rs Git - rust.git/blobdiff - src/test/mir-opt/issue-41697.rs
Rollup merge of #69287 - GuillaumeGomez:clean-e0317, r=Dylan-DPC
[rust.git] / src / test / mir-opt / issue-41697.rs
index 9db25b15f683559cff2c490d63224b054f9bc2ec..5a461d61482546f65e1b121418ec474f5eed64a7 100644 (file)
@@ -1,7 +1,7 @@
 // Regression test for #41697. Using dump-mir was triggering
 // artificial cycles: during type-checking, we had to get the MIR for
 // the constant expressions in `[u8; 2]`, which in turn would trigger
-// an attempt to get the item-path, which in turn would request the
+// an attempt to get the def-path, which in turn would request the
 // types of the impl, which would trigger a cycle. We suppressed this
 // cycle now by forcing mir-dump to avoid asking for types of an impl.