Skip to content

Commit 488b2a3

Browse files
committed
add FIXME to Steal
1 parent 25be798 commit 488b2a3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/librustc/ty/steal.rs

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ use std::mem;
2929
/// Obviously, whenever you have a query that yields a `Steal` value,
3030
/// you must treat it with caution, and make sure that you know that
3131
/// -- once the value is stolen -- it will never be read from again.
32+
///
33+
/// FIXME(#41710) -- what is the best way to model linear queries?
3234
pub struct Steal<T> {
3335
value: RefCell<Option<T>>
3436
}

0 commit comments

Comments
 (0)