There was an error while loading. Please reload this page.
I am using clippy 0.1.55 (88539999 2021-07-06).
clippy 0.1.55 (88539999 2021-07-06)
The suggestion given for:
let t1 = match type_section.types()[1] { Type::Function(ref func_type) => func_type };
is:
let Type::Function(t1) = type_section.types()[1];
it should actually include the ref:
ref
let Type::Function(ref t1) = type_section.types()[1];