blob: 127e1fe2465ce3f3a8dbd797cf20332effa6108b [file] [log] [blame]
Object? foo(int i) => "42";
Object? bar<T>(T t) => 42;
main() {
Function? f1 = foo;
f1!(42);
Function f2 = bar;
f2!<int>(42);
}