diff --git a/src/librustc/ty/steal.rs b/src/librustc/ty/steal.rs index fd611266f0836..0b0818888812f 100644 --- a/src/librustc/ty/steal.rs +++ b/src/librustc/ty/steal.rs @@ -29,6 +29,8 @@ use std::mem; /// Obviously, whenever you have a query that yields a `Steal` value, /// you must treat it with caution, and make sure that you know that /// -- once the value is stolen -- it will never be read from again. +/// +/// FIXME(#41710) -- what is the best way to model linear queries? pub struct Steal { value: RefCell> }