diff --git a/tests/allman/issue0586.d.ref b/tests/allman/issue0586.d.ref index cd86519..ccfe6f4 100644 --- a/tests/allman/issue0586.d.ref +++ b/tests/allman/issue0586.d.ref @@ -26,3 +26,10 @@ void main() temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1); } + +void g() +{ + tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc", + namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc", + namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc"); +} diff --git a/tests/issue0586.d b/tests/issue0586.d index db744f3..4004c86 100644 --- a/tests/issue0586.d +++ b/tests/issue0586.d @@ -29,3 +29,10 @@ void main() temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1); } + +void g() +{ + tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc", +namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc", +namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc"); +} diff --git a/tests/knr/issue0586.d.ref b/tests/knr/issue0586.d.ref index 76c61bc..6810926 100644 --- a/tests/knr/issue0586.d.ref +++ b/tests/knr/issue0586.d.ref @@ -25,3 +25,10 @@ void main() temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1); } + +void g() +{ + tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc", + namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc", + namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc"); +} diff --git a/tests/otbs/issue0586.d.ref b/tests/otbs/issue0586.d.ref index e62ff1a..2444e56 100644 --- a/tests/otbs/issue0586.d.ref +++ b/tests/otbs/issue0586.d.ref @@ -22,3 +22,9 @@ void main() { temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1); } + +void g() { + tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc", + namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc", + namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc"); +}