prettier/tests/flow/predicates-declared/sanity-pred-with-body.js

16 lines
336 B
JavaScript

// @flow
// Sanity check:
// - predicate functions cannot have bodies (can only be declarations)
function pred(x: mixed): boolean %checks(typeof x === "string") { // error: cannot use pred type here
return typeof x === "string";
}
function foo(x: string | Array<string>): string {
if (pred(x)) {
return x;
}
return "1"
}