07cf2557ed
Closes https://github.com/dart-lang/sdk/issues/29798 R=danrubel@google.com Review-Url: https://codereview.chromium.org/2994973002 .
10 lines
212 B
Plaintext
10 lines
212 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method main() → dynamic {
|
|
function f<T extends core::Object>(core::List<T> l) → T
|
|
return l.[](0);
|
|
dynamic x = f.call(<dynamic>[0]);
|
|
}
|