about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2014-12-29 11:06:15 -0500
committerNiko Matsakis <niko@alum.mit.edu>2014-12-30 09:36:23 -0500
commitc197911c60ce7eaea53ecb357d0409d3e38ff914 (patch)
treea884dca772855b0cdd7a41e8e5dd9d3a43da35c4
parentf1c041a54d89dad7d8857d84dd3424624e32486a (diff)
downloadrust-c197911c60ce7eaea53ecb357d0409d3e38ff914.tar.gz
rust-c197911c60ce7eaea53ecb357d0409d3e38ff914.zip
Add a FIXME relating to these type-testing traits
-rw-r--r--src/librustc/middle/ty.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/middle/ty.rs b/src/librustc/middle/ty.rs
index 583d2ce3b67..0f3037c06fd 100644
--- a/src/librustc/middle/ty.rs
+++ b/src/librustc/middle/ty.rs
@@ -6876,8 +6876,8 @@ pub fn can_type_implement_copy<'tcx>(tcx: &ctxt<'tcx>,
     Ok(())
 }
 
-// TODO -- all of these types basically walk various structures to
-// test whether types/regions are reachable with various
+// FIXME(#20298) -- all of these types basically walk various
+// structures to test whether types/regions are reachable with various
 // properties. It should be possible to express them in terms of one
 // common "walker" trait or something.