aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/progmodes/c-ts-mode-resources/indent.erts27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/lisp/progmodes/c-ts-mode-resources/indent.erts b/test/lisp/progmodes/c-ts-mode-resources/indent.erts
index 21b84c2e7e3..05d59c10a42 100644
--- a/test/lisp/progmodes/c-ts-mode-resources/indent.erts
+++ b/test/lisp/progmodes/c-ts-mode-resources/indent.erts
@@ -182,6 +182,20 @@ else if (false)
182 return 3; 182 return 3;
183=-=-= 183=-=-=
184 184
185Name: Initializer List (Bug#61398)
186
187=-=
188int main()
189{
190 const char *emoticons[][2] =
191 {
192 {":-)", "SLIGHTLY SMILING FACE"},
193 {";-)", "WINKING FACE"},
194 {":-(", "SLIGHTLY FROWNING FACE"},
195 };
196}
197=-=-=
198
185Name: Multiline Block Comments 1 (bug#60270) 199Name: Multiline Block Comments 1 (bug#60270)
186 200
187=-= 201=-=
@@ -327,3 +341,16 @@ void foo(
327 } 341 }
328} 342}
329=-=-= 343=-=-=
344
345Name: Initializer List (Linux Style) (Bug#61398)
346
347=-=
348int main()
349{
350 const char *emoticons[][2] = {
351 {":-)", "SLIGHTLY SMILING FACE"},
352 {";-)", "WINKING FACE"},
353 {":-(", "SLIGHTLY FROWNING FACE"},
354 };
355}
356=-=-=