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>
14 lines
416 B
Plaintext
14 lines
416 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method foo(core::Map<core::String*, core::String*>* m) → dynamic {
|
|
function bar<X extends Z* = dynamic, Y extends core::Object* = dynamic, Z extends core::Object* = dynamic>({core::Map<Y*, Z*>* m = #C1}) → void {}
|
|
bar.call<core::String*, core::String*, core::String*>(m: m);
|
|
}
|
|
static method main() → dynamic {}
|
|
|
|
constants {
|
|
#C1 = null
|
|
}
|