Objective-C Block type as return value

Viewed 4240

How do I write the following:

typedef void (^T)(void);
T f() {
    return ^{};
}

without the typedef?

1 Answers
Related