Skip to content

Commit e2ca279

Browse files
committed
Fix minor regression in newest nightly compiler. Updated README.md
1 parent de9441d commit e2ca279

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This proves extremely useful to get feedback on the types, compiler errors, etc.
4848

4949
As time goes on and the compiler internals change, the code will inevitably need changes to work again.
5050

51-
**The current state of the repository compiled without warnings and with all tests passing with** `rustc 1.70.0-nightly (4a04d086c 2023-03-18)`
51+
**The current state of the repository compiled without warnings and with all tests passing with** `rustc 1.70.0-nightly (700938c07 2023-04-04)`
5252

5353
### Installation
5454

src/translator/mir_visitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl<'tcx> Visitor<'tcx> for Translator<'tcx> {
4141
self.handle_ref_assignment(place, rhs);
4242
}
4343
rustc_middle::mir::Rvalue::Aggregate(_, operands) => {
44-
self.handle_aggregate_assignment(place, operands);
44+
self.handle_aggregate_assignment(place, &operands.raw);
4545
}
4646
// No need to do anything for the other cases for now.
4747
_ => {}

0 commit comments

Comments
 (0)