| Index: test/regression/0400/0444.unit
|
| diff --git a/test/regression/0400/0444.unit b/test/regression/0400/0444.unit
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..944f0f270cc233348ddcfceda6c11ec45945787f
|
| --- /dev/null
|
| +++ b/test/regression/0400/0444.unit
|
| @@ -0,0 +1,26 @@
|
| +>>>
|
| +class MyComponent {
|
| + Object firstArgument;
|
| + Object superDuperLongNamedArgument;
|
| + Object secondArgument;
|
| +
|
| + MyComponent(
|
| + @Inject(const MyFirstArgument()) this.firstArgument,
|
| + @Inject(const MySuperDuperLongNamedArgument())
|
| + this.superDuperLongNamedArgument, // LOOK AT ME
|
| + @Inject(const MySecondArgument()) this.secondArgument);
|
| +}
|
| +<<<
|
| +class MyComponent {
|
| + Object firstArgument;
|
| + Object superDuperLongNamedArgument;
|
| + Object secondArgument;
|
| +
|
| + MyComponent(
|
| + @Inject(const MyFirstArgument())
|
| + this.firstArgument,
|
| + @Inject(const MySuperDuperLongNamedArgument())
|
| + this.superDuperLongNamedArgument, // LOOK AT ME
|
| + @Inject(const MySecondArgument())
|
| + this.secondArgument);
|
| +}
|
|
|