Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: accessing first element with `block.stmts.get(0)` --> src/expr.rs:915:20 | 915 | match (block.stmts.get(0), block.stmts.get(1)) { | ^^^^^^^^^^^^^^^^^^ help: try: `block.stmts.first()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first = note: `-W clippy::get-first` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::get_first)]`
- Loading branch information