| Index: test/checker/checker_test.dart
|
| diff --git a/test/checker/checker_test.dart b/test/checker/checker_test.dart
|
| index b1ef888333741a03e6ee35b391fc3d6b9fb32d2b..11e724f5299878604a0921cef57074487f1f1754 100644
|
| --- a/test/checker/checker_test.dart
|
| +++ b/test/checker/checker_test.dart
|
| @@ -37,6 +37,8 @@ void main() {
|
| bool isValidKey(potentialKey)]) {
|
| : _comparator = /*warning:DownCastComposite*/(compare == null) ? Comparable.compare : compare,
|
| _validKey = /*info:InferredType should be pass*/(isValidKey != null) ? isValidKey : ((v) => true);
|
| + _Predicate<Object> _v = /*warning:DownCastComposite*/(isValidKey != null) ? isValidKey : ((v) => true);
|
| + _v = /*info:InferredType should be pass*/(isValidKey != null) ? _v : ((v) => true);
|
| }
|
| }
|
| void main() {
|
|
|