From: src/test/compile-fail/E0070.rs Error E0070 needs a span_label, updating it from: ``` error[E0070]: invalid left-hand side expression --> src/test/compile-fail/E0070.rs:18:5 | 18 | some_other_func() = 4; //~ ERROR E0070 | ^^^^^^^^^^^^^^^^^^^^^ ``` To: ``` error[E0070]: invalid left-hand side expression --> src/test/compile-fail/E0070.rs:18:5 | 18 | some_other_func() = 4; //~ ERROR E0070 | ^^^^^^^^^^^^^^^^^^^^^ left-hand of expression not valid ```