blob: 8a2c7a1614bbd2d1500b8bb8567ac3ea6e66803d [file] [log] [blame]
F bar() => foo;
F? baz() => foo;
Function()? foobar(Function()? x) => null;
class A<T> {}
class B extends A<Function()?> {
Function()? method(Function()? x) => null;
}
main() {}
typedef F = void Function();
void Function() hest() => foo;
void Function()? fisk() => foo;
void foo() {}