We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335e5ca commit c5fa613Copy full SHA for c5fa613
src/libsyntax/ext/base.rs
@@ -231,7 +231,7 @@ fn mk_ctxt(parse_sess: parse::parse_sess,
231
mut mod_path: ~[],
232
mut trace_mac: false
233
};
234
- move (imp as ext_ctxt)
+ move ((move imp) as ext_ctxt)
235
}
236
237
fn expr_to_str(cx: ext_ctxt, expr: @ast::expr, error: ~str) -> ~str {
src/libsyntax/util/interner.rs
@@ -16,7 +16,7 @@ fn mk<T:Eq IterBytes Hash Const Copy>() -> interner<T> {
16
let m = map::HashMap::<T, uint>();
17
let hi: hash_interner<T> =
18
{map: m, vect: DVec()};
19
- move (hi as interner::<T>)
+ move ((move hi) as interner::<T>)
20
21
22
fn mk_prefill<T:Eq IterBytes Hash Const Copy>(init: ~[T]) -> interner<T> {
0 commit comments