91aecfcd5f
Closes #45598. Bug: https://github.com/dart-lang/sdk/issues/45598 Change-Id: I37430faf057e3559ad6aefaa59d83d8a14320c54 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/194764 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
12 lines
334 B
Dart
12 lines
334 B
Dart
// Copyright (c) 2021, 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.
|
|
|
|
// @dart=2.9
|
|
|
|
foo(Function<X extends Z, Y, Z>({Map<Y, Z> m}) bar, Map<String, String> m) {
|
|
bar(m: m);
|
|
}
|
|
|
|
main() {}
|