blob: 81af6ded33be9fe5f99aeb570d384f4560882716 [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() {}