]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/moves-based-on-type-cyclic-types-issue-4821.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / moves-based-on-type-cyclic-types-issue-4821.rs
index 865784c2f1eede50822737829f56a5a2abdd23d9..0c4aae8cfad3651f37f37a8437408362a1ee02c6 100644 (file)
@@ -10,7 +10,7 @@
 
 // Test for a subtle failure computing kinds of cyclic types, in which
 // temporary kinds wound up being stored in a cache and used later.
-// See middle::ty::type_contents() for more information.
+// See rustc::ty::type_contents() for more information.
 
 
 struct List { key: isize, next: Option<Box<List>> }