We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45ef12b commit 8d15839Copy full SHA for 8d15839
src/compiler/expr.rs
@@ -446,7 +446,7 @@ fn reduce_expr(expr: Expr) -> Expr {
446
// C-style operations
447
BinaryOp::Add => a.wrapping_add(b),
448
// don't know if this has been handled yet.
449
- // TODO: handle lvalue errors before getting into compilation
+ // TODO(#6): handle lvalue errors before getting into compilation
450
BinaryOp::Assign => panic!("assign operator can't be between two constants"),
451
BinaryOp::Divide => {
452
if b == 0 {
0 commit comments