Issue 586: Add tests with keep_line_breaks true

(Currently) only testing for the indentation problem after a newline.
This commit is contained in:
Daniel Zuncke 2024-02-03 23:10:00 +01:00
parent 0c7c86f031
commit f003239e13
No known key found for this signature in database
GPG Key ID: A2A8C43610B6B485
5 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,7 @@
void test()
{
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}

View File

@ -0,0 +1 @@
--keep_line_breaks true

View File

@ -0,0 +1,7 @@
void test()
{
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}

View File

@ -0,0 +1,7 @@
void test()
{
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}

View File

@ -0,0 +1,6 @@
void test() {
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}