| Index: tests/language/inferrer_synthesized_constructor_test.dart
|
| diff --git a/tests/language/inferrer_synthesized_constructor_test.dart b/tests/language/inferrer_synthesized_constructor_test.dart
|
| index aa6c52bdbee64a46587ecc0a981bd74cb70a7481..5a813db1ee405130af62ee34135a604b5ef81eef 100644
|
| --- a/tests/language/inferrer_synthesized_constructor_test.dart
|
| +++ b/tests/language/inferrer_synthesized_constructor_test.dart
|
| @@ -22,6 +22,6 @@ main() {
|
| // used to only see this call and consider the [A.x] field to always
|
| // be int.
|
| Expect.equals(84, new A(42).x + 42);
|
| - Expect.throws(() => new B().x + 42,
|
| - (e) => e is ArgumentError || e is TypeError);
|
| + Expect.throws(
|
| + () => new B().x + 42, (e) => e is ArgumentError || e is TypeError);
|
| }
|
|
|