blob: d0740481ac7d66e3ba886b7d3a0ce2d6214d9a2c [file] [log] [blame]
class C {
int call() => 0;
}
functionContext(int Function() f) {}
nullableFunctionContext(int Function()? f) {}
foo<T extends C?>(C? c, T t, T? nt) {}
bar<T extends C>(C c, T t) {}
main() {}