The docs mention an example: ```js if fn(): x => 4 ``` wherein `fn(): x => 4` is parsed as a Flow annotated function and so the if is incomplete. The docs suggest correcting: ```js if fn(): (x) => 4 ``` But that doesn't work either!