| Index: tests/language/resolve_test.dart
|
| diff --git a/tests/language/resolve_test.dart b/tests/language/resolve_test.dart
|
| index 5276158cea24c5b572e5e642438bdfb8fa99fcce..4c0e31934de3ade178f1ab2bec3d26261b6c32fc 100644
|
| --- a/tests/language/resolve_test.dart
|
| +++ b/tests/language/resolve_test.dart
|
| @@ -3,6 +3,8 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
| // Dart test for testing resolving of dynamic and static calls.
|
|
|
| +import "package:expect/expect.dart";
|
| +
|
| class A {
|
| static staticCall() { return 4; }
|
| dynamicCall() { return 5; }
|
|
|