blob: cd16a79040e4c71e729c02d351227a126b318fc3 [file] [log] [blame]
// @dart = 2.12
typedef F = void Function()?;
void foo(void Function() x) {}
void bar(F x) {}
void baz(F? x) {}
main() {}