Index: packages/dart_style/test/regression/0000/0058.unit |
diff --git a/packages/dart_style/test/regression/0000/0058.unit b/packages/dart_style/test/regression/0000/0058.unit |
new file mode 100644 |
index 0000000000000000000000000000000000000000..687818157e0cf4721697ff0aeae5d20e3a9d711a |
--- /dev/null |
+++ b/packages/dart_style/test/regression/0000/0058.unit |
@@ -0,0 +1,10 @@ |
+>>> |
+bool doStuff(String firstArgX, {String secondArg, String arg3foo, Map<String, |
+ String> anotherArg, bool yetAnotherArg: false, bool tooManyArgs: true}) {} |
+<<< |
+bool doStuff(String firstArgX, |
+ {String secondArg, |
+ String arg3foo, |
+ Map<String, String> anotherArg, |
+ bool yetAnotherArg: false, |
+ bool tooManyArgs: true}) {} |