dart-sdk/tests/language/regress/regress14348_test.dart
Jacob MacDonald 51ac86c753 update collection dep, and add flutter-engine patch
Change-Id: I5e8b0eb2b161b71734feebb6e13d039082ad6bc5
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/152860
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Alexander Aprelev <aam@google.com>
Commit-Queue: Jake Macdonald <jakemac@google.com>
2020-07-01 20:50:38 +00:00

14 lines
484 B
Dart

// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Regression test for issue 14348.
import "package:collection/equality.dart";
main() {
const Equality<Iterable?> eq = const UnorderedIterableEquality();
const Equality<Map<dynamic, Iterable?>> mapeq =
const MapEquality<dynamic, Iterable?>(values: eq);
}