From 43800a05e85f1377203e78467667711286c21749 Mon Sep 17 00:00:00 2001 From: yuyi Date: Wed, 2 Aug 2023 15:40:09 +0800 Subject: [PATCH] fmt: fix formatting of fn with argument comments (#19038) --- vlib/v/fmt/tests/fn_with_args_comments_keep.vv | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vlib/v/fmt/tests/fn_with_args_comments_keep.vv diff --git a/vlib/v/fmt/tests/fn_with_args_comments_keep.vv b/vlib/v/fmt/tests/fn_with_args_comments_keep.vv new file mode 100644 index 0000000000..649a8e5989 --- /dev/null +++ b/vlib/v/fmt/tests/fn_with_args_comments_keep.vv @@ -0,0 +1,9 @@ +fn main() { + filtered_links := text_processing.filter_links(links, /* unwanted_domains = */ [ + 'www.kickstarter.com', + 'www.pepper.pl', + 'tenor.com', + 'www.wykop.pl', + 'giphy.com', + ]) +}