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', + ]) +}