Skip to content

Commit 8d15839

Browse files
committed
Add TODO(#6)
1 parent 45ef12b commit 8d15839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ fn reduce_expr(expr: Expr) -> Expr {
446446
// C-style operations
447447
BinaryOp::Add => a.wrapping_add(b),
448448
// don't know if this has been handled yet.
449-
// TODO: handle lvalue errors before getting into compilation
449+
// TODO(#6): handle lvalue errors before getting into compilation
450450
BinaryOp::Assign => panic!("assign operator can't be between two constants"),
451451
BinaryOp::Divide => {
452452
if b == 0 {

0 commit comments

Comments
 (0)