diff --git a/vlib/v/fmt/fmt.v b/vlib/v/fmt/fmt.v index edeea98dad..a3712d44f7 100644 --- a/vlib/v/fmt/fmt.v +++ b/vlib/v/fmt/fmt.v @@ -740,7 +740,7 @@ pub fn (mut f Fmt) expr(node ast.Expr) { if f.is_debug { eprintln('expr: ${node.position():-42} | node: ${typeof(node):-20} | $node.str()') } - match node { + match mut node { ast.AnonFn { f.fn_decl(node.decl) }