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