diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/ty/steal.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc/ty/steal.rs b/src/librustc/ty/steal.rs index fd611266f08..0b081888881 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<T> { value: RefCell<Option<T>> } |
