| Index: packages/dart_style/test/regression/0100/0151.unit
|
| diff --git a/packages/dart_style/test/regression/0100/0151.unit b/packages/dart_style/test/regression/0100/0151.unit
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..04b53f39103f869d3e5faf0ea6e7fcb69e0bb5b1
|
| --- /dev/null
|
| +++ b/packages/dart_style/test/regression/0100/0151.unit
|
| @@ -0,0 +1,15 @@
|
| +>>>
|
| +class Foo {
|
| + Foo(int longArg1, int longArg2, int longArg3, int longArg4, int longArg5,
|
| + int longArg6) : this._(longArg1);
|
| +
|
| + Foo._(int a);
|
| +}
|
| +<<<
|
| +class Foo {
|
| + Foo(int longArg1, int longArg2, int longArg3, int longArg4, int longArg5,
|
| + int longArg6)
|
| + : this._(longArg1);
|
| +
|
| + Foo._(int a);
|
| +}
|
|
|