prettier/tests/flow/predicates-parsing/fail-3.js

8 lines
196 B
JavaScript

// @flow
// Cannot declare predicate with a function body is present.
function f5(x: mixed): %checks (x !== null) { return x !== null }
var a2 = (x: mixed): %checks (x !== null) => x !== null;