| Index: tests/language/const_objects_are_immutable_test.dart
|
| diff --git a/tests/language/const_objects_are_immutable_test.dart b/tests/language/const_objects_are_immutable_test.dart
|
| index 6dd2ac7716451e0ab8e324119dd05a4e0b5509bf..c3f6d21410a403764603a0c35478e357ad53c144 100644
|
| --- a/tests/language/const_objects_are_immutable_test.dart
|
| +++ b/tests/language/const_objects_are_immutable_test.dart
|
| @@ -3,6 +3,8 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
| // Check that const objects (including literals) are immutable.
|
|
|
| +import "package:expect/expect.dart";
|
| +
|
| class A {
|
| const A(this.x, this.y);
|
| final num x, y;
|
|
|