summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorCharles Brunet <charles.brunet@optelgroup.com>2025-10-06 09:47:54 -0400
committerDylan Baker <dylan@pnwbakers.com>2025-10-08 08:38:48 -0700
commit8d69552dbd61144cdeab4ac93137db672c62fd52 (patch)
tree4a5d9aab7181ebed512aae9216802ee20faa3e11 /test cases
parent2379d727daaa5af8062cc12bbafcf44bdb6d1925 (diff)
downloadmeson-8d69552dbd61144cdeab4ac93137db672c62fd52.tar.gz
format: fix indentation at beginning of arguments
Fixes #14998
Diffstat (limited to 'test cases')
-rw-r--r--test cases/format/1 default/indentation.meson10
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/format/1 default/indentation.meson b/test cases/format/1 default/indentation.meson
index 7b26e49b1..14e1beb40 100644
--- a/test cases/format/1 default/indentation.meson
+++ b/test cases/format/1 default/indentation.meson
@@ -110,3 +110,13 @@ if (host_cpu_family == 'x86' and host_system in [
])
message('hi')
endif
+
+# Underindent in files() (issue #14998)
+sources = files(
+ # bar
+ # more bar
+ 'bar.c',
+ # foo
+ # more foo
+ 'foo.c',
+)