From 4a61a265a892486315589b823d0072aee32211ee Mon Sep 17 00:00:00 2001 From: Robert Nystrom Date: Wed, 28 Aug 2024 16:35:58 -0700 Subject: [PATCH] Add regression test for #1533. This was fixed by #1548. Fix #1533. --- test/tall/regression/1500/1533.unit | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/tall/regression/1500/1533.unit diff --git a/test/tall/regression/1500/1533.unit b/test/tall/regression/1500/1533.unit new file mode 100644 index 00000000..f4f13ad5 --- /dev/null +++ b/test/tall/regression/1500/1533.unit @@ -0,0 +1,15 @@ +>>> +void main() { + ComplexSelector(complex.leadingCombinators, [ + component, + ], complex.span, lineBreak: false); +} +<<< +void main() { + ComplexSelector( + complex.leadingCombinators, + [component], + complex.span, + lineBreak: false, + ); +} \ No newline at end of file