diff --git a/vlib/v/fmt/fmt.v b/vlib/v/fmt/fmt.v index 9eb0b7b30f..a469c1402d 100644 --- a/vlib/v/fmt/fmt.v +++ b/vlib/v/fmt/fmt.v @@ -1265,7 +1265,7 @@ pub fn (mut f Fmt) fn_decl(node ast.FnDecl) { f.stmts(node.stmts) f.write('}') } - if !node.is_anon && !node.no_body { + if !node.is_anon { f.writeln('\n') } } else {